Viewing 15 posts - 1,861 through 1,875 (of 2,486 total)
How is the file created?
You might be able to use the filename as your key and add it in as an ActiveX Script transformation.
January 6, 2004 at 11:48 pm
If you don't have Visual Studio .Net download and install the Script Debugger
http://msdn.microsoft.com/library/default.asp?url=/downloads/list/webdev.asp
Then turn-on Just-in-Time debugging by right clicking on the 'Data Transformation Services' and selecting Properties.
Put a...
January 5, 2004 at 4:51 pm
You use counter logs in much the same way the NT performance monitor logged counters to a file. The only difference is that you've got a few extra options.
To create...
December 23, 2003 at 3:17 pm
quote:
I have not collected other statistics, partially because I know the load on the machine, disk, and network is low at that...
December 22, 2003 at 3:27 pm
quote:
quote:
given your answers to our questions and suggestions, I'd say you'll have to "roll...
December 18, 2003 at 3:27 pm
Look for the line
goPackage.SaveToSQLServer
in the VB file. Check Books Online for the full syntax. Be aware that you'll lose the layout of the tasks and any...
December 18, 2003 at 3:12 pm
wodom, given your answers to our questions and suggestions, I'd say you'll have to "roll your own" maintenance plan.
In a past life I had to do this for SQL 6.5...
December 17, 2003 at 3:36 pm
You don't need to pass the filename to the job.
You can setup the DTS package to accept a global variable eg:the file path. Then your DTS package checks if the...
December 16, 2003 at 5:23 pm
I wouldn't say you should never use cursors, just be aware of their pitfalls and avoid them when more efficient methods are available.
Check the following topic in Books Online,
"Optimizing Application...
December 15, 2003 at 4:59 pm
quote:
Not sure about all the changes, but we have an article coming in the Jan issue of SQL Server Standard (http://www.sqlserverstandard.com/). Not...
December 15, 2003 at 4:42 pm
I would suspect a dodgy or incorrectly set terminators. I've successfully used BULK INSERT to import files that are 100's of Mb's.
See if you can import the file using...
December 15, 2003 at 4:38 pm
How are you updating the table? Using a stored procedure in an ExecuteSQL task, you can return the value of @@ROWCOUNT to a global variable.
Hope this helps
Phill Carter
--------------------
Colt 45 -...
December 14, 2003 at 4:05 pm
The backup priority can't be changed.
What options have you used in setting up the maintenance plan? The 'Reorganize Data...' option can cause timeouts while sqlmaint performs a dbreindex.
It sounds...
December 14, 2003 at 4:04 pm
Maintenance plans work well for most databases in SQL 2K. The exceptions are large multi-gb databases and databases with high-availability requirements.
If your database has to be available 24/7 and has...
December 14, 2003 at 3:46 pm
Viewing 15 posts - 1,861 through 1,875 (of 2,486 total)