Viewing 15 posts - 16 through 30 (of 69 total)
Hi,
I can assure you that the script wouldn't make any changes.
Can you post the latest script you have, so that I can take a look at whats going...
March 23, 2009 at 9:18 am
Hi Matt.
I glad that the script was useful. And Thanks for the suggestions.
The changes you suggested are published.
February 11, 2009 at 8:37 am
I am not sure if I understand the question entirely, but if you are trying to verify if the mentioned statements worked or not, try this:
Go to "cs_DotNetNuke\Security\Roles\Database Roles\db_dataeader",...
February 3, 2009 at 2:32 pm
Very Nice!! it works on 2008 as well. Good to know.
Thanks for the info.
December 10, 2008 at 2:40 pm
Try this query...
SELECT
t.[name] AS objectName,
mid.equality_columns,
mid.inequality_columns,
mid.included_columns
FROM
sys.dm_db_missing_index_details mid...
November 26, 2008 at 1:57 pm
If your situation allows dirty reads, then use table hints. With the (nolock) table hint, no shared locks are issued and exclusive locks are ignored.
Also, you would want to see...
November 24, 2008 at 12:39 pm
I am just glad that it is useful 🙂
November 11, 2008 at 12:14 pm
I want to be able to run a script that I can trust to give me a comprehensive statement of the access that any user has to any database...
November 5, 2008 at 10:10 am
Can you post the script that you've got after removing the 2000 part out? I tried doing the same and it worked with out any problem.
try doing it like...
October 30, 2008 at 8:26 am
Thanks!! I guess I have to do that.
October 10, 2008 at 3:04 pm
Once after the service restart, it took less than 1 second to respond to the query, which is what it should be.
SQL server could be out of memory when...
October 10, 2008 at 9:02 am
Cathy, thanks for working on it.
here is the updated script:
/**
Script: list all Usernames, Roles for all the databases.
Author: Shiva Challa (http://challa.info)
and the database Roles that the user...
October 9, 2008 at 8:30 am
Edogg (10/8/2008)
You could also grant VIEW DEFINITION to the dbo schema or any other schemas in the database.USE [DATABASENAME]
GO
GRANT VIEW DEFINITION ON SCHEMA::[dbo] TO
GO
ahaa!!
Dont know why I didnt think...
October 9, 2008 at 8:03 am
Here is the most updated script, With added code to use SysObjects in 2000 instead of sys.objects
/**
Script: list all Usernames, Roles for all the databases.
Author: Shiva Challa (http://challa.info)
and...
October 8, 2008 at 1:01 pm
KDASQL (10/8/2008)
Getting this error when I run this script in sql 2000:
Server: Msg 208, Level 16, State 1, Line 4
Invalid object name 'Tempdb.sys.objects'.
This is happening because there is no sys.objects...
October 8, 2008 at 12:50 pm
Viewing 15 posts - 16 through 30 (of 69 total)