Viewing 15 posts - 23,281 through 23,295 (of 26,490 total)
Not enough information. It would help to see the code, the DDL for the tables including defined indexes, and the execution plans for the queries.
December 15, 2008 at 4:21 pm
You can use the UI to create the table create scripts for you. Right click on the table and go from there. Remember, we need to be able...
December 15, 2008 at 4:08 pm
You would use a scheduled job to perform the archive process. Start by looking up SQL Server Agent in Books Online.
December 15, 2008 at 4:07 pm
And, yes, if the trigger fails, the insert that triggered the insert will also fail.
December 15, 2008 at 3:30 pm
Give this a try, but I would seriously look at Service Broker.
DECLARE @ani varchar(27)
DECLARE @fate varchar(3)
DECLARE @callid varchar(32)
DECLARE @BCPCmd varchar(2000)
SET @ani = (SELECT ani FROM inserted)
SET @fate = (SELECT...
December 15, 2008 at 3:27 pm
Your going to have to write dynamic sql in your trigger to get this to work the way you are going at the moment.
December 15, 2008 at 3:23 pm
I think I'd look closer at the requirements. Is there a need to have x amount on-line for ready access, say previous month plus current for instance. If...
December 15, 2008 at 3:14 pm
If I may, I'd like to make a suggestion. Don't do it this way. If for some reason the call to xp_cmdshell fails, your insert into the table...
December 15, 2008 at 2:56 pm
You will find it here: msdb.dbo.sysjobs
If you use the job_id, if they drop and recreate your job, the procedure will also break.
Best thing to do is document your job and...
December 15, 2008 at 2:41 pm
Looks like you told him what he could do, not what he wants. Looks like he needs the proverbial 2 x 4 to understand that he can't trace the...
December 15, 2008 at 2:33 pm
antonio.collins (12/15/2008)
From your column name list, the only obvious choice is
ExecutioninstanceGUID should be a uniqueidentifier.
Executionstarttime could be either...
December 15, 2008 at 2:27 pm
If the purpose of this thread was to "blow off steam", I think it has (and still IS) serving the purpose. What better place to swinging through the trees...
December 15, 2008 at 2:24 pm
Garadin (12/15/2008)
Username ...
December 15, 2008 at 2:17 pm
I have a csv file with two rows. The contents in the file look like this:
7282 1Z9132330343268916,
7283 1Z9132330342623908,1Z9132330344644098,
What quotes? Your sample above doesn't have any.
December 15, 2008 at 1:40 pm
Viewing 15 posts - 23,281 through 23,295 (of 26,490 total)