Viewing 15 posts - 16 through 30 (of 388 total)
do RESTORE HEADERONLY and check if HasIncompleteMetadata is set to 1.
December 1, 2016 at 4:21 am
quentin.harris (11/25/2016)
Hi,Can this be used before running a series of select queries against a table?
Or is this specifically about updates/deletes?
Q
My use case was for a large number of deletes in...
November 25, 2016 at 2:23 am
Statistics are independent of each other so you can have 1 stat with sampling, another with full scan, another with incremental, another with filter.
The test is below, from the below...
November 23, 2016 at 4:06 am
Bill Talada (11/22/2016)
November 22, 2016 at 6:23 am
Hi
That means that you are executing the queries manually.
The output of the query is of no importance.
The checksum is used since it can work on all data types.
The important bit...
November 16, 2016 at 1:04 am
Backup times were before vs after optimisation for one of my databases.
Native sql default options
BACKUP DATABASE successfully processed 4098542 pages in 3049.584 seconds (10.499 MB/sec)
Native sql Buffercount=500, maxtransfer =...
November 7, 2016 at 2:04 am
Changing cost threshold for parallelism could also invalidate plans.
Let us see the code and/or plan.
If anything, I am guessing the query may not be optimum.
I have seen option(recompile) work wonders...
November 4, 2016 at 8:48 am
Has warming the cache improved the deployment time in your test environment?
I would only look for a more permanent solution if I have proven that caching was the problem.
November 4, 2016 at 5:48 am
I'm including Eirikur Eiriksson's reply to a different thread as that has a great example of how warming the cache works.
So try doing this for the largest system tables.
Remember when...
November 4, 2016 at 4:19 am
Have you resolved the issue yet?
If not, can you check as an example
sp_spaceused 'sys.sysschobjs'
My prod DB has 5000 rows and is 3MB.
If you have 2 million objects, I am...
November 3, 2016 at 9:26 am
Jeff Moden (11/2/2016)
GA_SQL (11/2/2016)
need a script or an idea to create script when my db is full by 75% i want add some space to the db
This could actually be...
November 2, 2016 at 8:46 am
you didnt specify which full you mean, is the F drive 75% full and you want to add disk, or the MDF is 75% full and you want to grow...
November 2, 2016 at 8:17 am
For all the DB info
http://www.sqlservercentral.com/Forums/Topic670489-146-1.aspx
For the disk info
SELECT distinct volume_mount_point,total_bytes/1024/1024 total_bytesInMB ,available_bytes/1024/1024 available_bytesInMB
FROM sys.master_files AS f CROSS APPLY
sys.dm_os_volume_stats(f.database_id, f.file_id)
November 2, 2016 at 8:11 am
Try disable all SQL Server Error and Usage Reporting options.
If that doesnt work, try disable (Check for publishers certificate revocation) in IE Advanced options, if you willing to accept the...
November 2, 2016 at 7:32 am
Here is an article around that.
In the article, the numbers table is created and then worked on after.
October 27, 2016 at 9:15 am
Viewing 15 posts - 16 through 30 (of 388 total)