Viewing 9 posts - 1 through 9 (of 9 total)
Adding Some more details.. there are the databases with the same name for different servers.
July 12, 2016 at 10:53 am
When I execute the Database Space Capacity Report, it's not showing all databases in all instances. Please Help.
July 11, 2016 at 7:02 pm
Okay here is the scenario.
I am creating a DBA Report where I need to show the backup details for last 15 days including today's date.
I have 2 variables @StartDate...
January 25, 2016 at 11:06 am
This is used because if Current Date is less than 7th of the month, it should go to previous month to set the start date
January 20, 2016 at 3:22 pm
What if today's date is 5th January' 2016.
Will it show the start date as 21st December'2015 and End date as 5th January'2016
January 20, 2016 at 10:27 am
Hi Scott,
I just need the current date and a date before 15 days to find out whatever backups I took during the last 15 days.
I changed the code as,...
January 20, 2016 at 10:13 am
Hi Scott,
I executed the code today..
Declare @StartDate Datetime,
@EndDate Datetime
if DAY(@StartDate) >= 7
set @StartDate = DATEADD(day, -15, DATEADD(DAY, DATEDIFF(DAY, 0, GETDATE()), 0))
else
set @StartDate = DATEADD(DAY, -1, DATEADD(MONTH, DATEDIFF(MONTH, 0, GETDATE()),...
January 19, 2016 at 6:22 pm
The Partition is not NTFS Compressed. I am not able to see the file groups as the database is in restoring state.
December 21, 2015 at 11:35 am
Viewing 9 posts - 1 through 9 (of 9 total)