Viewing 15 posts - 1,066 through 1,080 (of 3,011 total)
You should be aware that someone in the securityadmin role can easily give themselves sysadmin access.
You can see a discussion of that on this thread:
http://www.sqlservercentral.com/Forums/Topic1009352-1550-1.aspx
I think a better solution is...
December 6, 2010 at 10:22 am
Run a query against the information_schema.tables view in each database on the server to find out the one(s) it is in.
December 3, 2010 at 10:26 am
I prefer not to have music playing when I work, because it tends to get me working at the pace of the music, and not the pace I should be...
December 2, 2010 at 10:05 pm
TheSQLGuru (11/30/2010)
I will help you with that: NEVER, EVER, EVER USE...
December 1, 2010 at 1:01 pm
Ninja's_RGR'us (11/30/2010)
Nice script.I don't want to seem too anal, but I have a Case sensitive server and your script fails @ @edition (lower e).
:hehe:
Fixed, I hope.
November 30, 2010 at 10:25 am
You can use the script on the link below to calculate the break even point for Processor vs. Server/CAL licensing.
Calculate SQL CAL Break Even Point
November 30, 2010 at 10:11 am
That is all determined internally by the database engine, not by the order of the joins.
November 30, 2010 at 8:31 am
You may also see a message in the SQL Server Error log like the following that has the name of the host it is running on. This message should...
November 29, 2010 at 3:36 pm
Grant Fritchey (11/29/2010)
November 29, 2010 at 2:10 pm
select
case
when col1 = 1 then 'col1'
when col2 = 1 then 'col2'
when col3 = 1 then 'col3'
... and so on ...
else '' end
from
MyTable
November 29, 2010 at 1:56 pm
99.99999% of the time, that is going to be a very bad idea.
Just store the data is a datatype that most closely fits the real type of the data.
November 24, 2010 at 10:06 am
Is the fill factor on the indexes very low?
Do you have any columns of datatype TEXT, NTEXT, IMAGE, NVARCHAR(MAX), VARCHAR(MAX), or VARBINARY(MAX)?
November 23, 2010 at 3:49 pm
"GO" is not a SQL Statement, so you should just remove it.
GO is a batch separator for some clients.
November 23, 2010 at 3:20 pm
mnielsen-1015626 (11/19/2010)
...I had never heard of the 'filtered unique index' approach. It seemed to be a clean approch, but alas I'm on SQL 2005.....
You should post questions on the...
November 19, 2010 at 6:15 pm
Geoffrey Wrigg (11/19/2010)
The college had a couple of mainframe VAX/VMS computers, with terminals in several...
November 19, 2010 at 4:29 pm
Viewing 15 posts - 1,066 through 1,080 (of 3,011 total)