Viewing 15 posts - 76 through 90 (of 196 total)
Maybe a bit extreme but one DBA monitoring team I worked with had a job on every server to log an error every hour. Had a bit of an...
April 26, 2016 at 3:13 am
Could it be index fragmentation? Or could it be some other process(es) using the table at the same time your query is running?
April 25, 2016 at 9:26 am
Great article, and good advice in there.
I'm off to get some new glasses.
April 25, 2016 at 3:09 am
Is moving the database to it's own server an option?
April 21, 2016 at 9:18 am
Sometimes it is quicker and easier to copy out the data you want to keep, empty the table using truncate, and then put the data you want to keep back...
April 21, 2016 at 9:13 am
You will probably get some more suggestions on how to do this later today, but here is how I would approach it.
SELECT
RRT1.[Employee Number]
, RRT1.[Timestamp]
, RRT1.[RAG Rating]
, RRT3.[Timestamp] [Previous...
April 21, 2016 at 4:25 am
When you do the insert into the previous table you are not inserting the previous value but the earliest value for the employee as you are using the MIN function....
April 21, 2016 at 4:05 am
I was still using DBCC DBREINDEX to carry out the index maintenance where we had issues with statistics being updated. IIRC it was SQL 2000. So the index stats...
April 21, 2016 at 3:44 am
You are probably going to have to refresh the environments from Production from time to time so it will be worth automating this process as much as you can. ...
April 20, 2016 at 4:37 am
John Hanrahan (4/19/2016)
April 20, 2016 at 2:47 am
robert.sterbal 56890 (4/19/2016)
Has anyone set up 2 virtual machines on their desktop, one for browsing and email and one for everything else?
I've done this recently. Got burned with letting the...
April 20, 2016 at 2:44 am
Viewing 15 posts - 76 through 90 (of 196 total)