Viewing 15 posts - 31 through 45 (of 184 total)
If it is test envoirment I think firstly
DBCC DROPCLEANBUFFERS
and
DBCC SQLPERF('sys.dm_os_wait_stats', CLEAR)
and start the HAMMERDB after the test you can
look at the wait statistics...
September 11, 2016 at 1:22 pm
Maybe you can use sp_stop_job
September 10, 2016 at 1:51 pm
Which tool are you use for performance testing? HammerDb?
September 10, 2016 at 1:30 pm
First download SQL Server 2016 Upgrade Advisor then check this link
and if you use SQL Server 2008 sp2 or sp3 must installed
SQL Server 2016 supports upgrade from the...
September 10, 2016 at 12:38 pm
Yes it table takes 15 minutes to create index
and indexed view takes 2 hour 50 minutes to create
May 24, 2013 at 12:11 am
But when i create a table index it is use what is changing in the indexed view index create operation
May 23, 2013 at 11:56 pm
I want to ask is there any difference maxdop setting table index
create and indexed view index create
May 23, 2013 at 5:08 pm
I CAN NOT SEE ANY ACTIVITY IN ALL CPU BUT WHEN
I TRY IT TABLE INDEX 64 CPU ARE START TO RUNNING
IS THERE ANY DIFFERENCE
May 23, 2013 at 5:06 pm
It depends
You can use this http://bradmcgehee.com/wp-content/uploads/presentations/SSC06%20How%20to%20Optimize%20TEMPDB%20Performance.pdf
April 6, 2013 at 1:33 am
You can use this maybe
CREATE TABLE #SPREPLACE (TXT VARCHAR(max))
INSERT INTO #SPREPLACE EXEC SP_HELPTEXT 'Proc Name'
DECLARE @SqlChangeScrpt AS VARCHAR(MAX)
DECLARE @SqlChangeScrpt2 AS VARCHAR(MAX)
DECLARE ChangeScrptCursor CURSOR FOR
SELECT TXT FROM #SPREPLACE
OPEN ChangeScrptCursor...
March 28, 2013 at 4:54 am
I restore backup another server and then i make checkdb
March 28, 2013 at 3:32 am
You can look this http://technet.microsoft.com/en-us/library/cc512029.aspx and find log files location
March 28, 2013 at 2:48 am
Look at the log text of SSRS maybe it gives much description about this error i think
March 28, 2013 at 1:34 am
You can use this
SELECT * FROM INFORMATION_SCHEMA.ROUTINES
WHERE ROUTINE_DEFINITION LIKE '%ColumnName%TableName%'
March 28, 2013 at 1:32 am
Viewing 15 posts - 31 through 45 (of 184 total)