Viewing 15 posts - 6,586 through 6,600 (of 6,678 total)
bhanf (5/22/2008)
Not sure how to create a linked server (so my answer is no i...
May 22, 2008 at 11:05 am
Well, I can say that I really do like SSMS a lot better than Enterprise Manager. However, some things that we got use to have either been removed -...
May 21, 2008 at 5:12 pm
bhanf (5/21/2008)
[StateLouisianaOld] is on TBServer1
[StateLouisianaNew] is on...
May 21, 2008 at 5:10 pm
Yes, it is available and does not need to be turned on. For whatever reason (I have no idea why), it has been changed to:
Ctrl-K-C to comment
Ctrk-K-U to uncomment
Jeff
May 21, 2008 at 4:43 pm
Because then you can create your own and publish it to your own report server. Or, build a daily process to track growth by table.
And better yet, if you...
May 21, 2008 at 2:55 pm
You can avoid the cursor and the call to sp_spaceused using the following (stolen 😉 from the standard report 'Disk Usage by Table').
;WITH partitionStats
AS (SELECT
ps.object_id,
SUM(CASE
WHEN (ps.index_id < 2) THEN...
May 21, 2008 at 2:08 pm
Ah - I see, this is one of those cases where I would have to agree that the use of a cursor is warranted. The only way to avoid...
May 21, 2008 at 1:38 pm
Since all you are doing is running a cursor over the temp table - I cannot see how having any indexes on the temp table would help.
I would be more...
May 21, 2008 at 1:07 pm
Are you using any temp tables in the stored procedure? That can cause some problems - as well as multiple resultsets.
May 21, 2008 at 1:02 pm
How large is this table? How many rows/pages?
Small tables will always show a level of fragmentation, and any table with less than 1000 pages is not going to show...
May 21, 2008 at 10:24 am
You need to be at version 9.0.3054 at a minimum (there were problems with SP2 and maintenance plans).
Additionally, you need to make sure your client tools have been upgraded to...
May 21, 2008 at 9:30 am
Mike Levan (5/20/2008)
TableB ( empid, Emprole,EmpSal)
I wan to look up TableA with TAble B, if TableB...
May 20, 2008 at 3:48 pm
View | Registered Servers
You are looking at the Object Explorer, which only shows servers that you are currently connected to.
May 20, 2008 at 2:22 pm
Statistics on indexes are automatically created with full scan and will remain that way unless you update statistics with a sampling after the indexes are created.
Well - that is how...
May 20, 2008 at 11:49 am
One question you need to consider also is how large is your maintenance window. In other words, how long do you have each night to perform maintenance?
If you have...
May 20, 2008 at 10:38 am
Viewing 15 posts - 6,586 through 6,600 (of 6,678 total)