Viewing 15 posts - 301 through 315 (of 370 total)
For SQL-Server 2000 I would use dts or bcp (bulk copy) to load the data from the csv file into a table in the database. You can then process the...
February 8, 2006 at 12:34 pm
Back to your original question, 1) If you don't want to use triggers...
I would do it one of two ways:
a) use triggers and generate the table like you laid out. ...
February 8, 2006 at 12:10 pm
Here is an article that is an Introduction to SqlServer 2005
http://www.sqlservercentral.com/columnists/fFinney/introductiontosqlserver2005.asp
Steve
February 3, 2006 at 9:36 am
If there is no connection, how will they get the scripts you generate to the other locations?
If there is a connection at some time then Snapshot or Merge replication should...
February 3, 2006 at 9:25 am
There is an article on this site on 12/07/2004 that compares four backup products and includes the two you asked about.
February 3, 2006 at 9:17 am
If you just need a copy of a table in an Access database, I would just copy from SQL-Server to Access (using dts if SQL-Server 2000).
Either that, or have...
February 2, 2006 at 11:37 am
I support the addresses for our county and we have added zip codes twice in the last 10 years, once because an community wanted their own zip code separate from...
January 5, 2006 at 10:59 am
Just a question, Do you have a reason for not setting your tempdb to autogrow? If you don't have the space I can understand, but if you do have enough...
January 3, 2006 at 10:41 am
I daily check the Current Activity and look to see if there are any processes initiatiated by users that are two days old or older based on Last Batch Date/Time. Usually...
December 20, 2005 at 9:03 am
If you are creating the dts from the Import/Export Wizard and have chosen "Copy table(s) and view(s) from the source database", when you select the table(s) click on the Transform...
December 12, 2005 at 3:41 pm
Enterprise Manager has a nice way of seeing all the indexes on a table. Choose the database that the table is in and change the View to Taskpad. Then click on the...
November 23, 2005 at 8:27 am
If you want to use DTS, here is a script that should disable triggers and foreign key contraints using the undocumented stored procedure sp_msforeachtable.
-- Disable all constraints and triggers
sp_msforeachtable "ALTER TABLE...
November 10, 2005 at 1:52 pm
One further thought on the need to store CC information in the customer record. Do all customers have Credit Cards? If not, it would be appropriate to put CC information...
November 8, 2005 at 2:51 pm
Which option did you use for the dts, Copy Tables and Views or Copy Objects and data? If the table structure hasn't changed, I would think that Copy Tables and...
November 7, 2005 at 1:08 pm
You could restore to a temporary database and then copy the table from there to the current database.
Steve
October 26, 2005 at 9:06 am
Viewing 15 posts - 301 through 315 (of 370 total)