Viewing 15 posts - 106 through 120 (of 126 total)
Alternatively, to keep all your old versions under the new name, you can update the sysdtspackages table in msdb.
If you take the package GUID (available from the package properties), you...
November 14, 2006 at 1:45 am
I take it this is what happens when a DBA has too much time on his/her hands!
Merry Christmas everyone!
December 23, 2005 at 7:22 am
"... dont rush, and follow EVERY step maticulously"
I certainly agree with you there Vinny! And I'll remember that the next time I'm involved in this process. Unfortunately I wasn't...
December 18, 2005 at 5:03 am
Brian,
Thanks for the reply. To clarify our position, we're installing SQL Server (not a service pack) as a clustered instance. It just so happens that we've managed to resolve the issue. ...
December 12, 2005 at 3:04 am
I underwent a similar task not long ago. I did a lot of searching to see whether it was possible to "convert" a default instance to a named instance. Unfortunately...
November 10, 2005 at 3:06 am
Don't forget to actually back up the log before you truncate it!
November 9, 2005 at 7:25 am
Hans,
Funny situation this. I did the very same thing as you, created a system DSN on the server, went into QA, entered the syntax and came back with exactly the...
September 1, 2005 at 9:23 am
You can pass parameters to your stored procedures at the end of your exec statement. You just need to join the strings together. For example,
"EXEC SPR_S_FreedomTest '" & DTSGlobalVariables("gvParameter1").Value &...
September 1, 2005 at 3:18 am
Hans,
It sounds to me as though you need to create the DSN on the same machine as the SQL Server. Any DSNs you create are stored on your local PC,...
August 31, 2005 at 3:32 am
I always get confused when looking at some of the syntax in BOL, especially when you get braces and brackets all over the show.
Basically, anything contained within braces {}...
August 31, 2005 at 3:19 am
Actually it would be 2005-07-25 12:08:44.440 because datetime is precise to only 1/300 of a second.
How do you know this stuff, Remi ??
July 27, 2005 at 12:20 pm
Christopher - What Sushila has said is absolutely correct, and I would advise using a default constraint as opposed to a Check constraint in your circumstance.
I may be wrong...
July 25, 2005 at 5:25 am
Bit of a crude method perhaps, but I've known a lot of people to use MS Access to generate reports based on their SQL databases. Dead easy to use, customise,...
July 25, 2005 at 5:13 am
Hi Erik,
Seems to me as though you just need to use a simple SELECT INTO statement. Try the following:
SELECT Col1, Col2, Col3, Col4 INTO TableB
FROM TableA
This creates a permanent table...
July 25, 2005 at 5:08 am
Viewing 15 posts - 106 through 120 (of 126 total)