Viewing 14 posts - 1 through 14 (of 14 total)
Interesting. I've never experienced that. So what code have you written to iterate thru all databases?
December 2, 2016 at 7:45 am
What bug did you find in sp_msforeachdb?
December 2, 2016 at 4:13 am
Only Microsoft can answer that question:-)
December 1, 2016 at 7:02 am
Not really. Many undocumented procedures work fine and are really useful.
November 30, 2016 at 11:53 am
Check out this article
http://support.microsoft.com/default.aspx?scid=kb;en-us;268520
May 28, 2004 at 11:48 am
Then DTS may not be properly installed. Reinstall your client and check.
March 22, 2004 at 7:40 am
what is the exact error message you are getting? are you not able to see the task icons in the toolbox in dts designer?
March 18, 2004 at 8:10 am
What if you create a dts package with two transform data tasks, one for customerid 2345 with the note field and another for all other customers. Then your excel spreadsheets...
March 17, 2004 at 10:42 am
How are you setting the value of customerid? Are you trying to write to an existing excel spreadsheet?
March 16, 2004 at 3:26 pm
can you post your code and the error that you are getting?
March 16, 2004 at 2:13 pm
write an activex script like
if customer1 then
dtsdestination("col1")=dtssource("col1")
This will only be executed if the global variable matches that customer. There is no need to specify no transformation condition.
March 16, 2004 at 12:32 pm
What built-in stored procedure can be used to perform the same task for each table in a database?
March 16, 2004 at 12:21 pm
It would be a good idea to run
DBCC CHECKIDENT (<tablename>, RESEED, 1)
every time before reloading so the identity seed is reset to 1 and you will never reach such...
February 20, 2004 at 12:22 pm
Viewing 14 posts - 1 through 14 (of 14 total)