Viewing 15 posts - 2,206 through 2,220 (of 6,038 total)
A backup is a page level copy of the original, so there is no need to perform another re-index or re-stat after restoring.
Also, if your reporting database is static after...
September 28, 2016 at 11:55 am
For about the 3rd time in the past week... sp_MsForEachTable to the rescue.
exec sp_MsForEachTable
'
if ''?'' like ''ntEventLog%''
begin;
print ''truncating.. ?'';
truncate table ?;
end;
';
September 28, 2016 at 11:36 am
robert.sterbal 56890 (9/28/2016)
When this gets done affordably, we will have reached a new level of technology.
I'm more than happy to follow...
September 28, 2016 at 11:29 am
Steve Jones - SSC Editor (9/28/2016)
Hmmm, D R O P TABLE works for me.
Strange, maybe it has to do with the internet firewall on my end; trying to block me...
September 28, 2016 at 10:12 am
Funny, SQLServerCentral won't let me say: "D R O P TABLE" (without the spaces)
September 28, 2016 at 9:24 am
So we're talking about self tuning database servers?
Perhaps:
Indexes that are auto-created based on data access pattterns like statistics.
Deployments that will auto-rollback in the event of an error, without creating...
September 28, 2016 at 9:23 am
Grant Fritchey (9/27/2016)
Eric M Russell (9/27/2016)
Talib123 (9/27/2016)
I'm a production DBA and have been for a good while.
I can query, join filters but how do I get my T-sql...
September 28, 2016 at 8:09 am
PiMané (9/28/2016)
Eric M Russell (9/28/2016)
September 28, 2016 at 8:01 am
Pingala (9/28/2016)
As the DELETEs are queued to SQL server, I thought it will take care of on executing synchronously
With the default read committed isolation level, readers can block writers and...
September 28, 2016 at 7:49 am
Yes, relocating to another city or state is a pain in the arse, and it's expensive, especially if you have to sell a house. I'd consider changing jobs within the...
September 28, 2016 at 7:39 am
Data compression is mostly about optimizing storage. Page Compression will yield approximately 70% compression in tables and indexes. By reducing the number of page reads and page buffers, it can...
September 28, 2016 at 7:34 am
SEO (search engine optimization) is a broad general term; there are many forms of search engines besides web searching and Google. Are we talking about a web search engine or...
September 28, 2016 at 7:25 am
Pingala (9/28/2016)
I am not sure how many rows are in a particular "queued" delete operation. Does indexing help?
Like I mentioned above, an index on the DELETE's WHERE clause predicate is...
September 28, 2016 at 7:11 am
Talib123 (9/27/2016)
I'm a production DBA and have been for a good while.
I can query, join filters but how do I get my T-sql skills to a developer\Report writer...
September 27, 2016 at 2:53 pm
Viewing 15 posts - 2,206 through 2,220 (of 6,038 total)