Viewing 15 posts - 2,206 through 2,220 (of 6,041 total)
If the delta for number of bytes written has changed, then you can assume that logs need to be shipped.
Also, the 2nd query will look at last update date...
September 28, 2016 at 1:17 pm
Why are you wanting start a new development project using Clinton era technology like classic ASP ?
September 28, 2016 at 12:52 pm
robert.sterbal 56890 (9/28/2016)
MP3 To Text Transcription
http://www.transcriptionstar.com/mp3-transcription/mp3-to-text.html
for the 24 hours of PASS recordings.
Do you have any actual experience with the service?
My real...
September 28, 2016 at 12:03 pm
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
Viewing 15 posts - 2,206 through 2,220 (of 6,041 total)