Viewing 15 posts - 571 through 585 (of 588 total)
Or look at properties for the icon on your desktop if you got it installed, which for me yields:
"C:\Program Files\Microsoft SQL Server\90\Tools\Binn\VSShell\Common7\IDE\SqlWb.exe"
SQLWB.exe is the SQL Server Management Studio.
February 7, 2007 at 2:58 pm
Really is only 3 ways I can think of that will convert a db from 2000 to 2005.
1) Detach and attach like you did
2) Restore a SQL 2000 backup to...
February 1, 2007 at 1:55 pm
I don't think you can export the grid from Server Management Studio. I've dealt with similar problems and ended up DTS'ing the package to an Excel format and then attached the...
February 1, 2007 at 6:15 am
All the selects are local. The input buffer just has the stored procedure name and the parameter (XML data in a text variable).
We do have linked servers, but all to...
January 25, 2007 at 9:57 am
Immediatly before it crashed there is a stack dump. The last thing in the error log before the ones associated with the stack dump is my backup 5+ hours earlier.
Here...
January 25, 2007 at 5:53 am
Guess my first inclination would be to have the job send an email to whoever needs it when it finishes. Just set the job to send an email whenever it...
January 24, 2007 at 12:06 pm
I can answer both yes and no!
I grew up in Norway, was an exchange student in Iowa, went back to Norway to finnish high school, went to University of...
January 19, 2007 at 7:09 am
Seems like I found the problem. My login did not have access to the share the snapshot was on. For some reason it did not give an error message. The...
January 16, 2007 at 10:40 am
Don't think you'll be able to use a trigger for this. Trigger's only get triggered...by some event, i.e. most of the time due to an insert/update/delete, but now in SQL...
January 16, 2007 at 7:36 am
38 is Role Name, so should be the right one. There are 64 columns total, see sp_trace_setevent for a full list (or at least as full as I have found).
Have...
January 15, 2007 at 9:16 am
Not familiar with SQL Express, but in 2000 creating a login with password encryption set to off meant you did not encrypt the password going into syslogins. This was used...
January 4, 2007 at 8:56 am
I have a timestamp on a table I do somethign similar ( a report of DDL changes in the last 24 hours). The part of the where clause looks like...
January 4, 2007 at 8:33 am
You could try the following to see if the login has serveradmin rights:
select
IS_SRVROLEMEMBER('serveradmin ')
Run this in...
January 4, 2007 at 8:25 am
Most likely not the answer you are looking for. But at least one other person has run into the problem it seems.
http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=526047&SiteID=1
December 20, 2006 at 2:08 pm
To read the file created from above use the fn_trace_gettable function. To get a count of how many calls has been made:
select
count(*)
December 18, 2006 at 9:27 am
Viewing 15 posts - 571 through 585 (of 588 total)