Viewing 15 posts - 3,586 through 3,600 (of 5,590 total)
Mitch2007 (8/26/2010)
would love some guidance on what I thought would be a simple insert statement.
I'm inserting some values that are created on the fly but the third value is...
August 26, 2010 at 1:12 pm
Stefan Krzywicki (8/26/2010)
August 26, 2010 at 1:06 pm
CirquedeSQLeil (8/26/2010)Should I stay or should I go now?
Yes. 😀
August 26, 2010 at 1:00 pm
This seems to be a good candidate for the exist() method.
August 26, 2010 at 11:54 am
My first guess would be that you're not returning the proper parameter into the procedure. Try running Profiler and capture the actual query being passed, and see if it looks...
August 26, 2010 at 11:23 am
I see I forgot to comment what I was doing.
Since the server/db are in variables, you need to build a string to put the variables in. Then execute the string.
And,...
August 26, 2010 at 9:24 am
Libby, you might find it easier to set up an Export-to-Excel package by using "Export Data" from SSMS, and then in that wizard tell it to save a package. When...
August 26, 2010 at 9:18 am
Resolution: see this link
August 26, 2010 at 8:41 am
chetanr.jain (8/26/2010)
When you have upgraded from 2005 to 2008, have u register the SPN's manually?
No, didn't have to do anything to make 2008 work properly when upgraded.
August 26, 2010 at 5:18 am
ColdCoffee (8/26/2010)
August 26, 2010 at 5:14 am
Elliott Whitlow (8/25/2010)
This functionality is only about 5 years late.They should have had this ready in 2005...
You guys have a good week.
CEWII
Agreed - it should have been ready when 64-bit...
August 25, 2010 at 10:25 pm
iqtedar (8/25/2010)
select name,type_desc,create_date,modify_date from [' + @server...
August 25, 2010 at 10:18 pm
iqtedar (8/25/2010)
Is there any dmv which can tell me all the views,sp's in a particular instance.
No
I have a script where my cursor loops through different servers and different databases....
August 25, 2010 at 10:16 pm
Prema sambandam (8/25/2010)
Thanks guys. it is working. is there any to automate so that every time new row added it will update by itself
Put it into an INSERT trigger.
August 25, 2010 at 10:06 pm
Ram,
First of all, I'm opposed to any code that contains the keyword "WHILE". This means that you are processing things in a loop, instead of a set-based manner.
I would start...
August 25, 2010 at 9:30 pm
Viewing 15 posts - 3,586 through 3,600 (of 5,590 total)