Viewing 15 posts - 706 through 720 (of 757 total)
Returns
database_nameBackupDateMinutesForBackupGB_backup_sizeseqFirstseqLast
AdventureWorks2011-09-13 00:00:00.0000.20.171 1 1
October 25, 2011 at 7:39 am
Thanks
Ja
It's getting a bit above my head.
Need to polish up my T-SQL skills.
October 25, 2011 at 7:26 am
I used this part
CREATE TABLE #dbs
(
DBNAME sysname
, DBID INT
, [Total Size in MB] INT
, [Available Space In MB] INT
, DriveLetter CHAR(1)
)
INSERT INTO
#dbs
...
October 25, 2011 at 7:17 am
Hi Perry
Thanks again for all your help re the above.
I started a new thread at http://www.sqlservercentral.com/Forums/Topic1195591-1549-1.aspx
My question was
Hi Guys
Win2008/SQL 2008
What is the process of adding a previously evicted node...
October 25, 2011 at 7:12 am
Thanks a lot
Won't work for as most of my databases consist of multiple datafiles across seperate drives.
Thanks
Derek
October 25, 2011 at 7:03 am
Ninja's_RGR'us (10/24/2011)
SET STATISTICS IO, TIME OFF
SET NOCOUNT ON
SET IMPLICIT_TRANSACTIONS ON
GO
USE [master]
GO
IF OBJECT_ID('dbo.spaceused', 'U') IS NULL
BEGIN
CREATE TABLE dbo.spaceused (
DbName...
October 25, 2011 at 12:04 am
muthukkumaran Kaliyamoorthy (10/21/2011)
derekr 43208 (10/21/2011)
I cannot find a conclusive answer to this
Does changing the recovery model from Full to Bulk_logged really reduce the size of the transaction logs when...
October 21, 2011 at 2:31 am
okbangas (10/21/2011)
Yes, rebuild index may require less log in bulk logged recovery model: http://msdn.microsoft.com/en-us/library/ms191244.aspx and http://msdn.microsoft.com/en-us/library/ms191484.aspx
Thanks
October 21, 2011 at 2:27 am
Cool
Thanks
Have you had a run at the Denali CTP?
October 20, 2011 at 11:53 pm
Ninja's_RGR'us (10/20/2011)
Yes.Immediately before SQL 12
Isn't Denali now termed as "SQL 12"??
October 20, 2011 at 8:55 am
Ninja's_RGR'us (10/20/2011)
derekr 43208 (10/20/2011)
Didnt have time to check the blogAny issues with Sp3?
Yes, SP4 not out yet :hehe:
:w00t:
Any news on Denali's release?
October 20, 2011 at 8:47 am
Didnt have time to check the blog
Any issues with Sp3?
October 20, 2011 at 8:38 am
Disable the alert job and you wont get the message anymore
Easiest Way.
October 20, 2011 at 8:23 am
Viewing 15 posts - 706 through 720 (of 757 total)