Viewing 15 posts - 41,356 through 41,370 (of 49,571 total)
LCAD (1/28/2009)
What would be THE cheapest query I can run on a table to get the desired effect?
SELECT * FROM TableName
January 28, 2009 at 11:46 pm
amit (1/28/2009)
Note that i can afford to lose data on the database. It contains essential info.
Do you have a clean backup? One without the corruption?
If you do, then you can...
January 28, 2009 at 11:45 pm
I'm not sure what you're asking. Could you give more detail please?
Are you asking for the reasons why we might create a clustered index or a nonclustered index?
January 28, 2009 at 1:48 pm
Lynn Pettis (1/28/2009)
ARRRRGGGGGG!!!And the man keeps running even further into the desert.....
Why, oh why are you still helping him?
January 28, 2009 at 1:42 pm
Steve Jones - Editor (1/28/2009)[hr "whether its transaction log backups, and XML indexes or whizbang fiber-optic laser beam assemblers." that were copied word for word, and these aren't phrases you...
January 28, 2009 at 1:38 pm
Basically what happened there is that you had transactional replication set up (somehow), but the log reader wasn't running and never had run. Hence tran log entries that were marked...
January 28, 2009 at 1:36 pm
clperez271172 (1/28/2009)
from msdb..sysjobs sj
join msdb..sysjobsteps sjs on sj.job_id = sjs.job_id
join msdb..sysjobservers sjd on sjs.job_id =sjd.job_id
LEFT OUTER JOIN msdb..sysdtspackages dts on sjs.command LIKE '%'+cast(id as varchar(100))+'%'
where command like...
January 28, 2009 at 1:25 pm
One difference is in the reusability of the plans.
With ad-hoc sql, the text has to match precisely (including whitespace) before an existing plan will be reused. The following two generate...
January 28, 2009 at 1:20 pm
smeet.sinha (1/28/2009)
What are the underlying issues with the MS SQL architecture i dont know. But that would be...
January 28, 2009 at 1:13 pm
DBADave (1/28/2009)
January 28, 2009 at 1:03 pm
Smartdog (1/28/2009)
although ur solution may be working in this case, but it will not be working when passing 7 parameters as i want to do,
If you'd said in your...
January 28, 2009 at 7:59 am
kiman_keren (1/28/2009)
question number 3: i got this one
http://msdn.microsoft.com/en-us/library/ms190962.aspx
That link's got nothing to do with index algorithms. It's talking about how the execution plan shows a clustered index seek.
Try these two:
January 28, 2009 at 7:55 am
If the ALLSTAFF is not encrypted and the ALLSTAFF_dec is encrypted, then you need to be using the EncryptByKey function when you insert from AllStaff to AllStaff_Dec. You're trying to...
January 28, 2009 at 7:53 am
Well, you can tell your vendor friend that, far from the 28-32 GB that he says the proc cache is using, it's actually using only 4.6 and most of that...
January 28, 2009 at 7:48 am
Viewing 15 posts - 41,356 through 41,370 (of 49,571 total)