Viewing 15 posts - 1,906 through 1,920 (of 6,401 total)
Log backups once a day, really? Whats your RPO, 24 hours, if so no need to do the log backup your nightly full will meet that expectation.
But in answer...
October 29, 2015 at 3:08 am
October 29, 2015 at 3:04 am
Is it not just a case of adding the where clause into the script you already have
SELECT
M.[Description]
,A.*
,M.Threshold
,M.[Threshold Direction]
,CASE
WHEN M.[Threshold Direction] = '>' AND A.Value > M.Threshold THEN 'GREEN'
WHEN...
October 29, 2015 at 3:02 am
Ed Wagner (10/28/2015)
Eirikur Eiriksson (10/28/2015)
Jeff Moden (10/28/2015)
Eirikur Eiriksson (10/28/2015)
Ed Wagner (10/28/2015)
Eirikur Eiriksson (10/28/2015)
happygeek (10/28/2015)
nibbleQuark
String
Tension
"Wait-till-last-minute"
(83-code-reviews-in-2-days-on-urgent-project :sick::blink::unsure:)
Ultimate tensile strength (UTS)
Shear
Sheep
October 29, 2015 at 2:44 am
Remove the * from the CONTAINS search, do you get the right results then?
October 29, 2015 at 2:41 am
Might be related, but has the agent account changed since setup? And if so was it done via services.msc or SQL Server Config Manager?
If services.msc, go to SQL Server...
October 28, 2015 at 9:37 am
Ed Wagner (10/28/2015)
whereisSQL? (10/28/2015)
anthony.green (10/28/2015)
whereisSQL? (10/28/2015)
crookj (10/28/2015)
anthony.green (10/28/2015)
Ed Wagner (10/28/2015)
anthony.green (10/28/2015)
Ed Wagner (10/28/2015)
anthony.green (10/28/2015)
Ed Wagner (10/28/2015)
SushiWasabi
Soy
Bean
Navy
Sailor
Pirate
Eye-Patch
Arrrrrrrrrrr
Treasure
Loot
Classifieds
October 28, 2015 at 9:16 am
whereisSQL? (10/28/2015)
crookj (10/28/2015)
anthony.green (10/28/2015)
Ed Wagner (10/28/2015)
anthony.green (10/28/2015)
Ed Wagner (10/28/2015)
anthony.green (10/28/2015)
Ed Wagner (10/28/2015)
SushiWasabi
Soy
Bean
Navy
Sailor
Pirate
Eye-Patch
Arrrrrrrrrrr
October 28, 2015 at 8:40 am
You checked that the server is right, you have permissions and that you can browse to it?
Your not using SSL at the server level are you and need to...
October 28, 2015 at 8:37 am
Generally in the past when I have done Oracle to SQL migrations, we migrate everything as NVARCHAR(MAX) (Yes I know over kill), into a staging database, then use functions...
October 28, 2015 at 8:30 am
Generally yes it would as a full backup resets the differential point.
But as these are snapshot backups using VSS unsure how they interact with the differential markers.
Would be worth doing...
October 28, 2015 at 8:22 am
Something like the following
create table #test (cola bit, colb bit, colc bit, cold bit)
insert into #test values
(1,1,1,1),
(1,null,1,1),
(1,null,null,1),
(1,null,null,null),
(1,null,null,null),
(1,null,1,null)
select * from #test
select count(*), count(cola), count(colb), count(colc), count(cold) from #test
select 'colA : '+convert(varchar,...
October 28, 2015 at 8:03 am
Big vague.
Can you elaborate more on the problem in hand?
October 28, 2015 at 7:37 am
Looks like you have a 3rd party tool also backup up the DB's as the is_snapshot flag is set to 1.
You can filter them out by adding
WHERE msdb.dbo.backupset.is_snapshot = 0
October 28, 2015 at 7:34 am
Ed Wagner (10/28/2015)
anthony.green (10/28/2015)
Ed Wagner (10/28/2015)
anthony.green (10/28/2015)
Ed Wagner (10/28/2015)
SushiWasabi
Soy
Bean
Navy
Sailor
October 28, 2015 at 6:54 am
Viewing 15 posts - 1,906 through 1,920 (of 6,401 total)