Viewing 15 posts - 8,161 through 8,175 (of 9,248 total)
newbie2sql (3/19/2010)
Solution you had given me is correct for my solution. Currently I am checking the permissions and...
March 20, 2010 at 4:19 am
yes, that goes without saying!
March 20, 2010 at 4:16 am
OK, i made this real easy. The screenshots below shows the registry entries created when installing SQL Server and the instance configuration in the installer. Notice the default instance (MSSQLSERVER)...
March 19, 2010 at 6:45 pm
i dont see whats wrong with my script?? :ermm:
March 19, 2010 at 6:31 pm
As Gail says "no commit, no dice" 😉
it's also worth noting if the database is in simple or bulk-logged recovery the create\alter index is not fully logged!
March 19, 2010 at 6:27 pm
GTR (3/18/2010)
Perry, are sure that will work on cluster?Scott, i think if you need two instances on cluster then you should go for Active\Active clustering with two named instances.
you...
March 19, 2010 at 7:18 am
try this
--uncomment the where clause and specify a database user
--to get permissions for a single account
USE yourdbhere
SELECT
'Permission "' + CONVERT(NVARCHAR(10), permission_name) COLLATE Latin1_General_CI_AS + '" "' +
case CONVERT(NVARCHAR(10),...
March 18, 2010 at 4:24 pm
the index which is being rebuilt is stored in a temporary area and brought in when the rebuild has finished to replace the existing index. An outage shouldnt really have...
March 18, 2010 at 4:07 pm
Scott Wise (3/4/2010)
March 18, 2010 at 3:44 pm
totally agree Thor.
the revoke thing is a little ambiguous i agree. I understand it as
if you take the user account out of the ACL you have neither allowed or...
February 8, 2010 at 10:35 am
you revoke NTFS permissions by not adding entities to the resource ACL list, this prevents access but doesnt deny. Access could still be granted via membership of another group.
All I'm...
February 8, 2010 at 7:51 am
hi i realised that. But whether sql, windows (NTFS), etc be careful with deny always revoke where possible
February 7, 2010 at 8:31 am
the other issue here is your explicit use of deny, always revoke rather than deny excedpt where absolutely necessary. Deny can have some very undesirable effects
February 6, 2010 at 3:02 pm
just a sanity check, have you verified in the sql server logs that SQL server is using locked pages. Check the instance startup text in the log to verify lock...
January 29, 2010 at 6:17 am
are you copying and pasting the text from this site to the command prompt?
if not, can you post the exact command you are using?
January 25, 2010 at 11:07 am
Viewing 15 posts - 8,161 through 8,175 (of 9,248 total)