Viewing 15 posts - 6,496 through 6,510 (of 7,429 total)
Sorry you did not set your savepoint properly.
You did
BEGIN TRANSACTION tr
needs to be
SAVE TRANSACTION tr
to set transaction savepoint within a transaction. Remember a trigger event occurrs within the same transaction...
April 8, 2002 at 4:53 am
The connector you are using for Sybase is not of a compatibility for SQL 2000 I would think. Is this Sybase running under windows? If so then you should be...
April 8, 2002 at 4:43 am
No, but you can only install the desktop edition and logins will be SQL Server only. Are you getting a specific message though that is not to that effect (could...
April 8, 2002 at 4:40 am
Try the follwoing format if you have a unique item key (not primary key, I mean column or comibnation of columns that are unique) and the table will be ordered...
April 8, 2002 at 4:39 am
Can you post what you have done including the process that started the transaction?
"Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)
April 6, 2002 at 8:37 am
Per zishanz in thread http://www.sqlservercentral.com/forum/topic.asp?TOPIC_ID=3430&FORUM_ID=23&CAT_ID=2&Topic_Title=bcp%20/%20how%20to%20run%20bcp%20from%20within%20a%20sp&Forum_Title=General
quote:
Can I use xp_cmdsehll inside my stored procedure?The book(Microsfot SQL Server 2000 DBA Survival Guide) p 409 says:
'Do...
April 6, 2002 at 8:32 am
No I believe sackerdj is referring to the english query dictionary which I haven't looked at yet. Look at dictionary entries in BOL.
"Don't roll your eyes at me. I will...
April 6, 2002 at 8:28 am
Anything you read will apply as a general, yes #1 is backups. But all the books and all the information will not help you as much as experience. The #1...
April 6, 2002 at 8:25 am
Okay how are you going about what you are doing. Also have you tried free running thre procedure and watching the server from Profiler to see if anything odd is...
April 5, 2002 at 2:43 pm
Also could be a compatibility issue, saw a couple of articles on MS KB site about SQLMail/SQLVersion with Outlook versions.
"Don't roll your eyes at me. I will tape them in...
April 5, 2002 at 2:42 pm
Prints are handled when processing is complete. You might try instead
SELECT @cntvar
this might work but not tested.
"Don't roll your eyes at me. I will tape them in place." (Teacher...
April 5, 2002 at 2:38 pm
This should fix.
SELECT @Note_10 = @Note_10 + CAST(WONo AS VARCHAR(5)) + ', ' FROM PELDMS.dbo.ImportLog1 WHERE Profile = @Profile_3
"Don't roll your eyes at me. I will tape them in place."...
April 5, 2002 at 1:53 pm
Or even then you could create a job for the DTS package that is not enabled and issue a sp_start_job to kick it off in a trigger (but you will...
April 5, 2002 at 12:21 pm
Here is the email he sent back to me if anyone wants to throw in, haven't said anything myself yet.
Dear James,
Thanks for your response,since i am a new...
April 5, 2002 at 12:02 pm
This will give you the exact same output
-----------------------------------------------------
SET @Note_10 = @Note_10 + '----'
SELECT @Note_10 = @Note_10 + WONo + ', ' FROM PELDMS.dbo.ImportLog1 WHERE Profile = @Profile_3
----------------------------------------------------------------------------------------------
As this
----------------------------------------------------------------------------------------------
DECLARE ActiveSDG_Cursor...
April 5, 2002 at 11:50 am
Viewing 15 posts - 6,496 through 6,510 (of 7,429 total)