Viewing 15 posts - 1,021 through 1,035 (of 7,501 total)
I wouldn't count on it.
btw. you can start xEvents to capture deprecated on your current SQL2008R2 instance and preparing for the fix.
ref Track Deprecated Features with Extended-Events[/url] .
...
April 11, 2016 at 2:50 am
Andy Warren (12/3/2015)
December 3, 2015 at 8:29 am
dndaughtery (12/3/2015)
December 3, 2015 at 8:19 am
...It means you have to check the backup before you set the options for the restore. For my revised code & test above you can infer that my backup did...
December 3, 2015 at 8:11 am
did you try this ?
Select PrimeKey, Col_A, Col_B, Col_C, Col_D, Col_A_B
from ( Select PrimeKey, A.Col_A, A.Col_B, A.Col_C, A.Col_D, B.Col_A AS Col_A_B,
RANK() Over(Partition BY A.Col_A, A.Col_B, A.Col_C, A.Col_D, order by...
December 3, 2015 at 7:28 am
You can do that using e.g. a scheduled task providing that wanted windows account as execution account of that task.
and then have that task execute the wanted sqlcmd using the...
December 3, 2015 at 5:36 am
Great feedback, guys ! :w00t:
Thanks.
December 3, 2015 at 5:27 am
to use Windows authentication use the parameter -E in stead of the -U and -pwd
December 3, 2015 at 5:24 am
first of all, you only have to install the most recent CU.
First install that CU at the non-active node.
the you will have downtime ! for failing over the SQLinstance from...
October 7, 2015 at 1:59 am
Database mirroring in use ?
With regards to Error 18456 I always use Aaron Bertrand's article: Troubleshooting Error 18456
October 6, 2015 at 3:28 am
tt-615680 (9/25/2015)
September 25, 2015 at 5:55 am
Set-location "c:\myfolder\SQLBackups"
# List all files and order by LastWriteTime descending
get-childitem -Filter '*.BAK' | Select FullName, LastWriteTime | sort LastWriteTime -Descending | ft -AutoSize
# only the most recent file
$Bakfile =...
September 24, 2015 at 2:01 am
It depends.
What's the recovery model used by the source database ?
What's the final goal of your database ?
Do you need your target database to be in e.g. read-only state, Read-Write...
September 23, 2015 at 6:48 am
SET Statistics time, io on
...
Set statistics time, io off
SELECT ...
INTO [TraceMMdd]
FROM ::fn_trace_gettable('E:\Thermo\MSSQL12.MSSQLSERVER\MSSQL\Log\ALZDBA_SQL_Trace_..._20150630_0838_.trc', default)
an off course The Glenn Berry Diagnostic...
August 21, 2015 at 9:17 am
Brandie Tarvin (7/30/2015)
...EDIT: Seriously, can anyone give me a real reason why WITH (NOLOCK) might be functionally necessary for production code?
To keep the answer brief and firm: No.
The risk encountering...
July 30, 2015 at 6:50 am
Viewing 15 posts - 1,021 through 1,035 (of 7,501 total)