Viewing 15 posts - 3,481 through 3,495 (of 19,564 total)
TheSQLGuru (2/27/2014)
SQLRNNR (2/27/2014)
February 27, 2014 at 8:14 am
you could run an extended event session to capture that since it looks like you are on 2012 and sql 2012 is more equipped and more friendly than previous versions...
February 27, 2014 at 7:55 am
Is your string supposed to be delimited by "/" or is that just a shortcut you used to represent different records?
February 27, 2014 at 7:21 am
Grant Fritchey (2/27/2014)
February 27, 2014 at 7:18 am
Are the reports in SSRS or some other app?
February 27, 2014 at 12:24 am
Ford Fairlane (2/26/2014)
Too easy - thanks 🙂
+1
February 27, 2014 at 12:23 am
Interesting article.
You could also take advantage of sys.database_recovery_status
February 27, 2014 at 12:20 am
Yes, the domain migration could be impacting it.
You should have your AD guys verify the trust relationships and ensure the accounts from both domains have adequate permissions to each domain...
February 27, 2014 at 12:01 am
Here is an alternative script that could help with your trending report
DECLARE @SQLVer SQL_VARIANT
,@DBName VARCHAR(128)
,@NumDaysSMALLINT
,@SQLvarchar(1024)
,@WhereClauseVARCHAR(256)
SET @DBName = 'TFCCS_Transfers'
;
SET @NumDays = 90
;
SET @SQLVer = CONVERT(INTEGER, PARSENAME(CONVERT(VARCHAR(20),SERVERPROPERTY('ProductVersion')),4));
SET @WhereClause = 'WHERE a.type...
February 26, 2014 at 11:59 pm
JoshDBGuy (2/26/2014)
You can run something like this,
CREATE TABLE #TEMP1...
February 26, 2014 at 11:56 pm
Jeff Moden (2/26/2014)
February 26, 2014 at 11:50 pm
If it is opening slow, do you have a very large job history retention?
February 26, 2014 at 11:46 pm
Is there a time of day that they run slow all the time?
Are the reports being run with different parameters when they run slow?
Do you have any jobs running at...
February 26, 2014 at 11:45 pm
SSIS, tsql, linked servers could help get the job done.
You would probably want to batch the migration. It wouldn't be hard to do it via a sql agent job...
February 26, 2014 at 11:43 pm
Viewing 15 posts - 3,481 through 3,495 (of 19,564 total)