Viewing 15 posts - 616 through 630 (of 872 total)
Kam,
There are HUNDREDS of reasons ... what is your objective here?
March 21, 2008 at 11:47 am
Well, msdb.dbo.sysjobs_view contains all of your job information.
You're not going to know if a SQL Agent job communicates to another server as a job can basically do anything. You can...
March 21, 2008 at 11:46 am
qur7 (3/21/2008)
hi folksi need to find out a way to figure out how many jobs are been pulled out from the server ,
Please clarify ... Are you trying to figure...
March 21, 2008 at 11:40 am
Yes, use OPENROWSET.
March 21, 2008 at 11:38 am
Well, you're not really using much of your query ... that and why are you changing your recovery models for this operation? The ALTER index does not bloat the...
March 21, 2008 at 10:43 am
Toss a where clause at the end for:
WHERE a.index_id > 0
AND a.index_id < 255
That should have been the only thing causing you nulls.
March 21, 2008 at 10:31 am
Isn't R5 better for reads, just horrible for writes? Which brings up the question, what is the best bet for a warehouse? DW's usually only see writes in the off...
March 21, 2008 at 10:27 am
The real answer should be mssqlsystemresource ...
March 21, 2008 at 10:23 am
Matt Miller (3/21/2008)
- Gravity
I've recently proposed purchasing gravity insurance to my bosses for these situations ...
March 21, 2008 at 10:19 am
RedGate's SQL Compare is about the best of the best in my opinion ... a little pricey, but well worth it. If you want something a bit cheaper, but not...
March 21, 2008 at 10:16 am
Books Online is your friend 🙂
As for your query ... this should fix ya up, let me know ...
SELECT
a.index_id
,b.name
,avg_fragmentation_in_percent
,c.name
,d.name
,e.name
FROM sys.dm_db_index_physical_stats (DB_ID(), NULL,NULL, NULL, NULL) AS a
JOIN sys.indexes AS...
March 21, 2008 at 10:13 am
What are the index id's from sys.indexes? If they are 0, than it is a heap, which would not be in sys.objects. If they are > 255, they are lob,...
March 21, 2008 at 9:52 am
So your linked server is from 2005 to 2000 right? Can you linked server to other 2005 instances? There is a weird issue when using a linked server from 2005...
March 21, 2008 at 9:45 am
Well, I'll be damned ... I wasn't looking at it properly due to the email address being a group ...
Anyways, both in x86 and x64, I changed the replyto email,...
March 21, 2008 at 9:28 am
My reply to works just fine ... curious to hear what you find out ... Anything you'd like me to find out from our exchange guy?
March 21, 2008 at 9:17 am
Viewing 15 posts - 616 through 630 (of 872 total)