Viewing 15 posts - 361 through 375 (of 617 total)
Since you are using SQL 2000 you will probably find this easier.
UPDATE d_description SET RequestId = con.RequestId, FormId = Con.FormId,
DescriptionId = CASE WHEN IdDescription =
(SELECT MIN(IdDescription) FROM d_description d
WHERE...
August 10, 2010 at 4:18 pm
You could also add a GO after the use statement
:connect MyServer
use MyDB
go
sp_helptext spGetCustomer
go
July 9, 2010 at 1:49 pm
I'll try to get it written up as an article next week. In the mean time maybe you can answer another quick question. If I am going to...
July 9, 2010 at 12:05 pm
I've actually been working on the "Double-Hop" problem for over a year now, even with help from someone else who had solved it. And I finally came down to...
July 9, 2010 at 10:29 am
Its a full install of SQL Server Standard, including SSIS. Could it be the method we are using to call the package? IE DTEXEC instead of using a...
May 1, 2009 at 9:03 am
Well I read the article but I'm not sure I understand it. How do you set a package to run "in process" I've seen in/out of process when...
April 29, 2009 at 12:44 pm
Ok I'm getting the following errors. Can any of you think another reason why I would be getting these? Other than needing an Enterprise version of SSIS that...
April 29, 2009 at 10:34 am
Gift Peddie,
That was actually why I was asking. I want the Enterprise version of SSIS so I can do the Advanced transform but don't want to upgrade the existing...
April 23, 2009 at 1:36 pm
I'm running SP2CU7 on most of my servers. Anyone have any opinions on what level is best to go to? CU9, 10, 11, SP3 or SP3 CU1? ...
January 23, 2009 at 1:45 pm
rgambill (10/8/2008)
Can't you just set the Enforce Password Policy to off (uncheck it)? Assuming that you're using SQL authentication.
Unfortunatly that just sets the rules for password creation. The password...
October 8, 2008 at 10:05 am
RP_DBA,
Thanks for the suggestion but I've tried TRUNCATE_ONLY. Unfortunately the defrag moves the data to the end of the file so TRUNCATE_ONLY doesn't do much.
Gila,
I have around 80gig...
September 5, 2008 at 11:54 am
You are missing a ) at the end of the line.
You have your closing paran for the CONVERT but not for the VALUES on the insert. It should look...
September 5, 2008 at 9:19 am
That's basically the path I'm taking at the moment. I'm buliding in a "BatchMode" that turns off the interactive part so that we can pass in the variables.
July 24, 2008 at 12:32 pm
Its used by DBAs only who run it interactivly. It is a set of 2 packages although the interactive part is all in 1 package. It's mostly a...
July 24, 2008 at 12:13 pm
Unfortunatly same subnet, different IP addresses. Also same TNS files. We copied them from the working server.
Any other suggestions?
Thanks for the help BTW
Kenneth
April 28, 2008 at 3:35 pm
Viewing 15 posts - 361 through 375 (of 617 total)