Viewing 15 posts - 8,446 through 8,460 (of 9,641 total)
DCPeterson (6/10/2008)
June 10, 2008 at 9:33 am
DCPeterson (6/10/2008)
Now, tracking which queries were sent, which tables/columns were queried, and who sent them makes sense and is easily accomplished with a trace.
This is why I did not mention...
June 10, 2008 at 8:55 am
Lee,
I'm glad I'm not in that position. This impacts how you allow users to query the data as well. I would think the easiest way to implement this...
June 10, 2008 at 8:17 am
[sarcasm]Wow a failed SAP implementation, I've never heard of that before![/sarcasm]
June 10, 2008 at 8:10 am
Nice series. I think the key is knowing what to log and why. I have been involved with logging where everything was logged because we could and I...
June 10, 2008 at 7:42 am
In my experience the biggest reason for software project failures has been a lack of "buy-in" by the people who will be using the software and lack of true support...
June 10, 2008 at 7:28 am
VALEK (6/9/2008)
My high maths teacher would kill me for assigning 0.8^250000 to zero.
The question did not ask you to assign it to 0. The reason the word "consistently" is...
June 10, 2008 at 7:16 am
If you restored the database on the DEV server from a backup on the PROD server you probably want to update the statistics for one. As you can see...
June 6, 2008 at 3:03 pm
Do you mean a count of the # of rows in each table in a database? Either of these will work although the second would the recommended approach in...
June 6, 2008 at 3:00 pm
Not sure what you mean by disk consumption but the article, http://www.sqlservercentral.com/articles/Operations+Manager/63041/, includes a query which gets database file sizes using MOM.
June 6, 2008 at 2:51 pm
It helped me even if it doesn't help the OP.
June 6, 2008 at 2:47 pm
Yes, I could not remember where I had seen Grant's article. I thought it has been posted on SSC, but I could not find it. It is a...
June 6, 2008 at 2:46 pm
You need a comma "," after DailyReading. Then it should at least parse.
June 6, 2008 at 2:45 pm
You would need to use dynamic sql and even then I am not sure is would work. Something like:
Declare @sql varchar(max)
Set @sql = 'insert into ' + @dbname +...
June 6, 2008 at 2:42 pm
Checking everything is part of the job. First things to look for are Table Scans and Clustered Index Scans(basically a table scan). If you can eliminate these you...
June 6, 2008 at 2:33 pm
Viewing 15 posts - 8,446 through 8,460 (of 9,641 total)