Viewing 15 posts - 856 through 870 (of 930 total)
Is there any way to check when this change happened.
In my knowledge, I never changed it.
February 10, 2010 at 12:23 pm
When I run sp_helpuser 'db_ddladmin' under this database in SSMS I can see the group account as a member of this role.
But when I go to SSMS and then server->Security->Login...
February 4, 2010 at 1:01 pm
Command(s) completed successfully. 🙂
February 4, 2010 at 12:48 pm
Please try putting the database into emergency mode and then try to delete it.
UPDATE master..sysdatabases SET status=-32768 WHERE name='<dbname>'
Hope this should help.
February 3, 2010 at 6:20 pm
Please run sp_who2 and see the process if something is in use
Also, query sysprocesses table
select * from sysprocesses
Just check by dbid and see if there any processes.
Or...
February 3, 2010 at 4:54 pm
Before deleting builtin\Administrators anytime, it is important to find the members in this group.
You can get from below query itself
xp_logininfo 'Builtin\Administrators','members'
Just make sure that the account that runs your services...
February 1, 2010 at 1:01 pm
Please let me know how much time this procedure takes to run.
January 28, 2010 at 11:53 am
Steve,
The DMVs updated by MarkusB are pretty good. Even the performance dashboard gives charts similar to the output. The first DMV gives CPU usage (SQL and non SQL) in the...
January 28, 2010 at 10:59 am
You can consider using the DMV's available in SQL Server 2005
You could also use some tools which includes Microsoft Add-on tools like Performance Dashboard reports which are extremely useful...
January 27, 2010 at 2:33 pm
As per my understanding, partitioning will be useful in such a case right?
Have not implemented on my database, but I was going through some documents.
Anam,
Out of curiosity, how much...
January 27, 2010 at 10:26 am
Hey you are right. It is tough to wade through this one. Even experienced guys are wary to give their sign off if DBCC freeprocache is absolutely harmless or not...
January 26, 2010 at 1:48 pm
Just a suggestion 🙂
If we use DBCC FREEPROCCACHE, it would clear the execution plan from cache globally, i.e remove all elements from procedure cache.
We could see the contents of procedure...
January 26, 2010 at 12:54 pm
Dear All,
Thanks for your help. I wrote to the author of this book and he asked me to download the source code from the book he had written for...
January 25, 2010 at 9:46 pm
Ganga,
Yours is an intersting scenario. Regarding the size of log file being more than 400 MB, is there a way by which you can reduce the time period of the...
January 21, 2010 at 8:46 pm
Viewing 15 posts - 856 through 870 (of 930 total)