Viewing 15 posts - 421 through 435 (of 529 total)
Try these links, you should find all you need to know
http://www.sql-server-performance.com/sg_sql_server_performance_article.asp
http://www.extremeexperts.com/sql/articles/SQLCounters.aspx
They may talk about SQL 7 in some places but the info is still valid for 2000.
April 7, 2005 at 5:26 am
You forgot to say what OS you were using, that might have an impact on the advice we can give you
April 7, 2005 at 5:19 am
There are a couple of different ways to look at this,
If there's over 10K...
April 7, 2005 at 5:17 am
So if I understand you correctly you want
select getdate() as today
select dateadd(d, 20, getdate()) as [20daystime]
although if you want it to be 20 working days I'll leave the logic up...
April 6, 2005 at 4:55 am
beets me, I tried the following in the master database and it works perfectly, the only thing I can see from your post is that you didn't declare the variable...
April 5, 2005 at 9:14 am
You could use a trigger for update and store the info in an audit table but it's pretty near impossible to track who has viewed a table (unless you only...
April 5, 2005 at 9:09 am
we did some testing with SQLSTRESS when we were benchmarking our new cluster and SAN, or you can always download one of the ones from the MS website.
April 5, 2005 at 9:01 am
We manually update the stats each evening too, letting sql decide when to do it tended to cause a few too many issues (it always kicked off at the busiest...
April 5, 2005 at 2:19 am
If you have the objects created in your model database every new database you create will also have them .
I'd have a look, clean...
April 5, 2005 at 2:14 am
It never used to be a problem with SQL 6.5 (god I'm getting old), that used to let you restore just a table.
They changed the way it worked in SQL...
April 5, 2005 at 2:11 am
Thanks for putting it so well
April 4, 2005 at 3:13 pm
Baseball, isn't that just a group of men who like hitting their balls with a stick?
April 4, 2005 at 9:03 am
You'd only be able to do this if the table you wanted had been put in it's own particular filegroup which had been backed up seperately.
Unfortunately you're stuck with restoring...
April 4, 2005 at 6:04 am
All of the databases I look after have alerts configured to inform me when they reach 75% log utilisation, and do an automatic backup/checkpoint (depending on their mode) when it...
April 4, 2005 at 5:56 am
Not a very pretty way but you could always capture normal usage in profiler for say 30 mins and then replay it once you'd re-attached.
You'd have to be careful that...
April 1, 2005 at 9:16 am
Viewing 15 posts - 421 through 435 (of 529 total)