Viewing 15 posts - 12,571 through 12,585 (of 13,469 total)
permissions due to a service pack:
http://support.microsoft.com/kb/328151
You need to have admin rights, and this switch must be called in order to restore debug rights:
Exec sp_sdidebug 'legacy_on'
HTH; i ran into the...
June 29, 2007 at 11:36 am
also search for the Split() function in the scripts...there are several, and some return a table with multiple columns (ELEMENT,ELEMENTID), some just return a single column, etc. the split a...
June 26, 2007 at 10:02 am
could it be a permissions issue? you might have SELECT permission in the master database, but NOT dbowner (so that you can CREATE VIEW) in the other database? what user...
June 1, 2007 at 7:58 am
to use the in function on a string, you'll need to grab one of the many SPLIT functions that are in the script contributions here.
otherwise, you really would want...
June 1, 2007 at 6:55 am
here's an example I keep around for casting from nvarchar to varbinary and then back to nvarchar:
the key is to use nvarchars... i beleive this fails if you try to...
June 1, 2007 at 6:09 am
I saved this snippet for SQL2000, so i would assume it would still be valid in 2005; hope this helps:
USE master
go
EXEC sp_grantlogin 'BUILTIN\Administrators'
go
EXEC sp_defaultdb 'BUILTIN\Administrators', 'master'
go
EXEC sp_defaultlanguage 'BUILTIN\Administrators', 'us_english'
go
EXEC sp_addsrvrolemember...
May 29, 2007 at 6:49 am
here's one of many citations on it from microsoft: i just searched for sql 2005 server multi core processors and grabbed the first link
http://www.microsoft.com/technet/prodtechnol/sql/2005/msde2sqlexpress.mspx
so to be clear, if you...
May 8, 2007 at 1:06 pm
it's physical processors that are counted, not cores...so you could have a 4 processor all with quad cores, as i remember it, and it would work with no problem
May 8, 2007 at 7:17 am
valuable article; whenever I found a situation similar to this, I always blamed out of date statistics, and updated statistics and recompiled procedures; nice detective work, I have a better...
May 7, 2007 at 5:50 am
Tony may be on to something....a typical problem where something works fine, and then slows down over time often points to out of date statistics on the database; this can...
May 3, 2007 at 6:42 am
i think what you are seening is whenever anyone is given the role db_owner(), their user_name is considered to be dbo for the queries performed.... since everyone else comes in...
May 2, 2007 at 8:40 am
i fat fingered the link and added a backslash..sorry.
I edited the link and it does take me to the right spot now.
May 2, 2007 at 8:33 am
a better explanation of index hints than BOL supplies can be found here:
http://www.sqlservercentral.com/columnists/rmarda/performanceaddinghints_printversion.asp
it's bad to second guess SQL Server's abilities as far as deciding which index to use, but...
May 2, 2007 at 7:31 am
you didn't really describe what the problem was...whether it was slow running, received a real error, or just bad performance.....so here's my guesstimate:
There's no problem creating a really big temp...
April 30, 2007 at 4:41 am
Glad you worked it out , Dave; keep reading SSC; lots of good stuff here.
April 26, 2007 at 11:33 am
Viewing 15 posts - 12,571 through 12,585 (of 13,469 total)