Viewing 15 posts - 76 through 90 (of 147 total)
That can happen in SQL Server 2000.
Have you tried running DBCC UPDATEUSAGE?
December 19, 2012 at 11:10 am
This should work in SQL Server 2000 (not tested though):
select o.name, i.rows
from sysindexes i
join sysobjects o on i.id = o.id
where i.indid in (0, 1)
order by 2 desc
December 19, 2012 at 11:05 am
Ah SQL2000. Ignore me then. That standard report won't work either.
December 19, 2012 at 11:01 am
It's easy to forget the standard reports in SSMS.
December 19, 2012 at 11:00 am
You can see this in Management Studio.
1. Click on "Databases" in Object Explorer
2. Select menu item "View -> Object Explorer Details" - a table is displayed showing all databases and...
December 18, 2012 at 5:42 am
Is there a typo in your question? It looks like you want the following to be returned, unless I have misunderstood:
ID Stat StatDate
1 AppRec 2012-12-01
1 AppCom 2012-12-02
If so, this...
December 17, 2012 at 5:00 pm
I use a PowerShell script that compares logins on two instances and generates a script to run on the second to bring it in line with the first.
To run it...
December 17, 2012 at 11:34 am
Have a look at Policy Based Management.
I set my policies up as "On Demand", and schedule the evaluations from a Central Management Server. This allows me to check my...
December 4, 2012 at 5:12 pm
Hi Jeff,
Yes I do use it. It's good to find such well written and supported code provided free to the community.
I should have mentioned that "other scripts are available"...
December 2, 2012 at 11:40 am
Or, instead of writing your own backup and maintenance scripts, you could use the ones by Ola Hallengren.
Highly recommended.
December 1, 2012 at 12:00 pm
Here's an alternative. Sneaky, but it works.
December 1, 2012 at 6:08 am
Are you sure both varbinary values are the same? SQL Server will always insert a leading zero if there are an odd number of hex digits after the initial...
November 30, 2012 at 11:54 am
If you have the ability to receive alerts when disk space is getting low, then unrestricted growth makes sense.
On the other hand, you don't want one out-of-control database to create...
November 28, 2012 at 12:24 pm
Actually you can only have one default instance, any additional ones have to be named. This is no different from a standalone server, and is due to the fact...
November 28, 2012 at 12:06 pm
You are absolutely correct.
I am the guilty author of that article (written about a year ago) and have no idea why I wrote that.
I will correct the mistake ASAP.
Thanks for...
September 25, 2009 at 10:00 am
Viewing 15 posts - 76 through 90 (of 147 total)