Viewing 15 posts - 46 through 60 (of 107 total)
ErrLog,
That's a good script that I'll make sure I use. Thank you for pointing it out.
May 23, 2013 at 12:26 pm
Lowell
Thank you for the link, I'll take a look. The easy fix would be to apply the SP1 and bring the server to that level. The easy fix......
May 23, 2013 at 12:25 pm
Thank you Erin, will do, I tell myself test, test, and test again 🙂
May 23, 2013 at 11:57 am
I ran the script:
SELECT DISTINCT
( [vs].[logical_volume_name] ) AS 'Drive' ,
[vs].[available_bytes] / 1048576 AS 'MBFree'
FROM...
May 23, 2013 at 10:46 am
Thank you, I had in mind link servers and ssis packages. I'm leaning towards SSIS packages because it seems to give more control and more options. Thank you...
May 23, 2013 at 10:08 am
Good article, it will definitely point me in the right direction, I'm a very new DBA and I'm learning all the tricks and what to watch for.
One question, how can...
May 23, 2013 at 7:57 am
wakanni,
If you're getting an error it might be due to having a space in the database name. Add some brackets in the code below around the database parameter value....
May 7, 2013 at 8:06 am
I will definitely check it out. Thank you.
May 2, 2013 at 8:08 am
Thanks for the question, some people tend to forget the basics and waste time chasing their tales. Whether you use system tables, depricated or user tables you proved your...
May 2, 2013 at 7:59 am
Jeff,
I totally agree with on the exposure of the database to the public. The team I formed part with now it's very concious about this issue. We're...
May 2, 2013 at 7:19 am
Shaz I made a small change to your script to work with my databases. I have a couple that have a space in the file name. No major...
April 29, 2013 at 2:00 pm
Very nice script, I was in fact looking for a way to pull this information together. I found a few scripts that gave me too much and some too...
April 29, 2013 at 1:42 pm
The user that I'm trying to change is in fact the owner of the database. Would the best practice be change the owner of the database to the sa...
April 29, 2013 at 7:39 am
USE YourDatabaseName;
GO
SELECT sp.name
FROM sys.database_principals dp
JOIN sys.server_principals sp ON dp.principal_id = sp.principal_id
WHERE dp.name = 'dbo';
GO
The script above...
April 29, 2013 at 7:12 am
Thank you I will definitely do. Although it not may occurrences when this happens I'd like to know if there's anything else I need to look into. The...
March 28, 2013 at 8:32 am
Viewing 15 posts - 46 through 60 (of 107 total)