Viewing 15 posts - 106 through 120 (of 451 total)
This may help.
Analyzing Memory Requirements for SQL Server
July 9, 2008 at 9:45 am
rbarryyoung (7/8/2008)
July 8, 2008 at 9:57 pm
Worked out a version for all databases (SQL2000).
-- List all objects owned by any user(s) other than DBO.
DECLARE @sql VARCHAR(500)
SELECT @sql =...
July 8, 2008 at 9:52 pm
Thank you Perry.
I modified a little.
select user_name(uid) as user_name, name
from sysobjects
where user_name(uid) <> 'dbo' and user_name(uid) <> 'sys'
order by user_name, name
July 8, 2008 at 8:51 am
Thank you RBarryYoung. But still have errors.
Msg 156, Level 15, State 1, Line 2
Incorrect syntax near the keyword 'User'.
....
July 8, 2008 at 8:50 am
Try Idera SQLpermissions tool.
http://www.sqlservercentral.com/Forums/Topic483265-146-1.aspx
July 7, 2008 at 5:51 pm
I think MVP is more valuable than the certificate. Not saying that certificate is not good. It is a helpful learning path.
Congratulations Gail! I just read Steve's...
July 6, 2008 at 7:09 am
Just read this post today. Are you still looking for the course?
http://www.cmstraining.ca/CourseDetails.aspx?CourseId=56&Product=SCOM
Implementing Operations Manager (SCOM 2007)
July 16 - 18
September 03 - 05
I heard that the instructor is...
July 6, 2008 at 6:07 am
TheSQLGuru (7/3/2008)
...a good bit of those will get weeded out due to inability to communicate (at all levels) effectively and/or lack of leadership abilities.
Strongly agree. These traits are very...
July 3, 2008 at 8:57 am
Two more:
1. "SQL Server clustering best practices" By Hilary Cotter with Geoff Hiten
http://searchsqlserver.techtarget.com/
2. SQL Server Consolidation on the 64-Bit Platform, Lessons Learned
http://www.microsoft.com/technet/prodtechnol/sql/2000/deploy/64bitconsolidation.mspx
July 2, 2008 at 9:04 pm
Category 2: DBA Best Practice Specific to Clustered Instance.
--> make SQL/MSDTC/Cluster Service seperate groups.
July 2, 2008 at 8:42 pm
Finally use OSQL -SserverN -E -iMyinput.sql to loop through all my servers and append the output to the same output file, then load the file to a table.
July 2, 2008 at 8:32 pm
Congratulations to both of you.
I am really impressed by Jeff’s posts. Seems nothing he cannot resolve. When I post my question, I wish Jeff could read...
July 2, 2008 at 5:59 pm
andrewkane17 (6/26/2008)
June 26, 2008 at 10:02 pm
jezemine (6/26/2008)
Vivien Xing (6/26/2008)
But openquery needs linkedserver. This is not what I want.OPENROWSET does not require a linked server. requires just the connection string to the remote.
This may...
June 26, 2008 at 8:26 pm
Viewing 15 posts - 106 through 120 (of 451 total)