Viewing 15 posts - 691 through 705 (of 757 total)
Ninja's_RGR'us (10/26/2011)
derekr 43208 (10/26/2011)
Cadavre (10/26/2011)
DECLARE @sql AS VARCHAR(MAX)
SELECT @sql = COALESCE(@SQL + '; ', '') + sql_command
FROM (SELECT 'USE ' + QUOTENAME(name) +
...
October 26, 2011 at 6:38 am
Cadavre (10/26/2011)
DECLARE @sql AS VARCHAR(MAX)
SELECT @sql = COALESCE(@SQL + '; ', '') + sql_command
FROM (SELECT 'USE ' + QUOTENAME(name) +
...
October 26, 2011 at 6:26 am
Hi Ninja
I tried this
CREATE TABLE #dbs
(
DBNAME sysname
, DBID INT
, [Total Size in MB] INT
, [Available Space In MB] INT
, DriveLetter CHAR(1)
)
INSERT INTO
#dbs
...
October 26, 2011 at 6:23 am
Ha Ha - No
Not short at all
I'm just trying to get a 100% percentage accurate amount before I add in the
PercentFree = AvailableSpaceMB/TotalSizeMB*100 column
October 26, 2011 at 5:53 am
Hi Ninja
When using the following
EXEC sp_MSforeachdb '
USE [?];
SELECT
DB_NAME() As DBNAME
, DB_ID() AS DBID
, SUM(size / 128) AS ''TotalSizeMB''
...
October 26, 2011 at 5:38 am
Ok
So In future, Best practice would be to uninstall any Clustered application before evicting the Node..
October 25, 2011 at 8:48 am
So when we evicted the Node - We didn't uninstall SQL
Does this mean that I would have to uninstall SQL and reinstall it using the Add Node feature of the...
October 25, 2011 at 8:27 am
Thanks
I get the jist of it but not yet confident enough to deploy
I like to understand every single line of the code in the script I use before deploying.
Thanks for...
October 25, 2011 at 8:08 am
In a nutshell - What I wanted was to be able to report on the free space in a database as a percentage
With what you gave me, I did this
CREATE...
October 25, 2011 at 7:57 am
Ninja's_RGR'us (10/25/2011)
derekr 43208 (10/25/2011)
Apologies for that - Doesnt look goodPlease see attached
C:\Users\derekr\Desktop\Result.jpg
I can't see what's on your c drive. You need to upload it here.
If you want you can...
October 25, 2011 at 7:47 am
Apologies for that - Doesnt look good
Please see attached
October 25, 2011 at 7:42 am
Viewing 15 posts - 691 through 705 (of 757 total)