Viewing 15 posts - 61 through 75 (of 181 total)
I don't think you can do that in SQL Server QA.
November 26, 2002 at 11:03 am
Even after setting the text size it does not give the complete text of the stored procedure,I chops off the text in a single row after certain limit.For example if...
November 22, 2002 at 7:25 pm
Try putting the Insert's into one transaction.
Begin Transaction
Your Code
End Transaction
November 22, 2002 at 3:07 pm
To the extent I know about SQL server we cannot execute the VB app. inside a trigger.
November 22, 2002 at 2:42 pm
I don't think you can pass the variable values into the DTS task from the trigger.But try taking the values into the global variables and using those variables in the...
November 22, 2002 at 2:02 pm
With the standard addition it does not give us the choice to specify the location.with the personal addition if you are trying to install than it will give the choice...
November 22, 2002 at 1:43 pm
I think you can execute a DTS package when a Insert trigger fires Using DTSRUN Utility.
November 22, 2002 at 1:41 pm
Is that disk space getting filled up when you are trying to insert the data into the database.Check the transaction log size.
November 22, 2002 at 1:32 pm
I Think it is doable,have you tested it?
November 22, 2002 at 1:30 pm
Which edition are you trying to install?
November 22, 2002 at 1:24 pm
I Would say bulk insert.If there are indexes on the table the inserts will become slow.
November 22, 2002 at 1:18 pm
with aliased columns
DECLARE @LAST_FIRST VARCHAR(50)
SET @LAST_FIRST = 'BORRELLI, ANDY'
SELECT SUBSTRING(@LAST_FIRST,1,CHARINDEX(',',@LAST_FIRST)-1) LAST,
SUBSTRING(@LAST_FIRST,CHARINDEX(',',@LAST_FIRST)+1,LEN(@LAST_FIRST)) FIRST,
@LAST_FIRST
November 22, 2002 at 1:13 pm
DECLARE @LAST_FIRST VARCHAR(50)
SET @LAST_FIRST = 'BORRELLI, ANDY'
SELECT SUBSTRING(@LAST_FIRST,1,CHARINDEX(',',@LAST_FIRST)-1),
SUBSTRING(@LAST_FIRST,CHARINDEX(',',@LAST_FIRST)+1,LEN(@LAST_FIRST)),
@LAST_FIRST
November 22, 2002 at 1:11 pm
Viewing 15 posts - 61 through 75 (of 181 total)