Programmatically Speaking ...

This site

Fav Blogs

Sponsors

  • MaximumASP
  • Packet Sniffer

Browse by Tags

All Tags » sql (RSS)
SQL Bulk insert and ADO .NET SQLBulkCopy
--SQL Procedure to insert data from a comma delimited text file use MyDatabase --- Create a temp table to hold the data CREATE TABLE TmpStList ( username varchar (100) NOT NULL, userpassword varchar (100) NOT NULL, ) go --bulk insert from a text file...
Posted: Apr 15 2008, 06:39 PM by xxxd | with no comments
Filed under: ,
Some Dos and Dont's in designing website databases
1. Choose the right data storage device Do not use XML files as the sole data storage device, for XML files are not ideal for constant data operations (delete, insert, update). Do not use Access database, because a. Access Database is not suitable for...
Posted: Jan 23 2008, 02:22 AM by xxxd
Filed under: , ,