Viewing 15 posts - 38,206 through 38,220 (of 39,720 total)
Sorry, this is one of those things that is very difficult to track down. One thing you might do is before you run the process that fails is save off...
February 21, 2002 at 10:42 am
Probably. Profiler will at least tell you if this is doing something on your box. It might be doing something on another SQL box, in which case, you'd have to...
February 21, 2002 at 10:39 am
Yes. When running Active/Active, you have 2 SQL Servers. there is, of course, a shared virtual SQL Server as well, but the two instances "pose" as this virtual.
change them...
February 21, 2002 at 10:22 am
Perhaps. You'd have to have a reference to the existing package and then add an object to it.
Is there some reason you do not want to call another package?
Steve...
February 20, 2002 at 3:30 pm
You might try searching for some .DTS files on the server and see if there are any.
Steve Jones
February 20, 2002 at 3:28 pm
You can query to see if new objects have been created. There is a create data in sysobjets. If the objects are altered, however, you cannot determine this with a...
February 20, 2002 at 3:27 pm
Not sure about the syntax for the BCP. Guess you'd need a shell of some type.
To execute another package:
Dim oPkg, intError
Set oPKG = CreateObject("DTS.Package")
oPKG.LoadFromSQLServer strServerName, , , 256, , ,...
February 20, 2002 at 1:17 pm
I wouldn't do this in a trigger. Instead, use the trigger or the original code to insert a value into some process table. Then have something that runs every minute...
February 20, 2002 at 1:14 pm
February 20, 2002 at 1:12 pm
It could be running from a COM file, a .DTS file. What is the job definition?
Steve Jones
February 20, 2002 at 1:10 pm
I do this as well and have some writing going on for this. I have a separate package that does the import for my files since all of them are...
February 20, 2002 at 10:17 am
My guess is that SQL is performing an implicit conversion. This means that SQL will attempt to automatically convert a character to an integer if that is the destination field...
February 20, 2002 at 10:14 am
Are these different formats of files? Do the names changes? If there is some pattern here you can do it. Look at the FileSystemObject. It will allow you to get...
February 20, 2002 at 10:06 am
This should be dependent on your client program. What driver/data access method are you using?
Steve Jones
February 20, 2002 at 9:56 am
If you want to "lock" a row, or series of rows in SQL Server so only one edit at a time can occur, I'd use a flag instead. It isn't...
February 20, 2002 at 9:54 am
Viewing 15 posts - 38,206 through 38,220 (of 39,720 total)