Viewing 15 posts - 16 through 30 (of 137 total)
Did you try using an output parameter in your stored procedure?
From BOL:
CREATE PROCEDURE get_sales_for_title
@title varchar(80), -- This is the input parameter.
@ytd_sales int OUTPUT -- This is the output...
July 28, 2003 at 11:39 am
Thanks, so I can safely use INIT on the backup because I always will restore from the latest version in my scenario.
Darren
Darren
July 24, 2003 at 12:22 pm
Nope, they are the same thing. You'll be fine with decimal.
Darren
July 1, 2003 at 8:58 am
Have you messed around with using DTS to manually import these tables. You may have to transform the data using VB Script for the data types it is not...
July 1, 2003 at 8:52 am
We use numeric(14,2). We rely on our application code to handle all of the rounding. This data type is preferred because "money" is specific to SQL Server and would...
July 1, 2003 at 8:46 am
It sounds like you are using a real table not a temp table. How was this temp table created? You should be able to perform a normal delete...
June 27, 2003 at 9:12 am
What does "and then changes tab" mean? Is the Sybase db setup as a linked server?
Darren
June 27, 2003 at 9:06 am
We figured it out. Somehow the share had been removed on the folder where the backup was restored. Nobody knows how this happened. Has anybody seen something like...
June 19, 2003 at 11:56 am
Have you tried running sp_who2 to see what is running and to see if there are any blocks?
If the use of temp tables is slow have you checked if the...
June 4, 2003 at 2:24 pm
Could you provide a generic example of what you are trying to accomplish? I'm not following what you mean by:
<b>
Is it possible to catch the field that was inserted...
June 4, 2003 at 2:21 pm
Try putting 2 single quotes around the 2.
... where t_psts LIKE ''2'' ')
Darren
June 4, 2003 at 2:17 pm
I might have to stick with that approach. I tried testing my approach with Northwind. It wouldn't allow me to copy the .mdf because it says it's in...
June 4, 2003 at 1:49 pm
I think the attach option will work for us.
Here is how I see it working
1) Backup our Production database
2) detach the previous day's Staging database (this is the restore of...
June 4, 2003 at 12:50 pm
We do care about it in production, but when we restore it on another server, we don't want it. So how do I do the restore without the log?
Darren
June 3, 2003 at 5:48 pm
Viewing 15 posts - 16 through 30 (of 137 total)