Forum Replies Created

Viewing 15 posts - 41,356 through 41,370 (of 49,571 total)

  • RE: Keeping user database in memory

    LCAD (1/28/2009)


    What would be THE cheapest query I can run on a table to get the desired effect?

    SELECT * FROM TableName

  • RE: Page Inconsistency

    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...

  • RE: lock

    Why don't you use temp tables? Then there's no worries about locking (only your process has access) and you don't need to worry about dynamic names.

    In the future, please post...

  • RE: clustered index and non clustered index

    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?

  • RE: Are the posted questions getting worse?

    Lynn Pettis (1/28/2009)


    ARRRRGGGGGG!!!

    And the man keeps running even further into the desert.....

    Why, oh why are you still helping him?

  • RE: Are the posted questions getting worse?

    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...

  • RE: Log file size large with replication

    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...

  • RE: Urgent HELP ME¡¡¡¡¡¡ Some one

    clperez271172 (1/28/2009)


    select sj.name, dts.name, command,sj.date_modified,sjd.last_run_date

    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...

  • RE: stored procedure bias

    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...

  • RE: Using EXECUTE (@sqlvar) in function

    smeet.sinha (1/28/2009)


    Don't u think that would be great if Microsoft would have considered this.

    What are the underlying issues with the MS SQL architecture i dont know. But that would be...

  • RE: Help understanding adhoc plans and procedure cache

    DBADave (1/28/2009)


    If I understand plan cache (and I still may be missing some things), the formulas above pertain to how SQL Server determines at what level plan cache will be...

  • RE: Need help with this

    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...

  • RE: sql server indexing?

    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:

    Clustered...

  • RE: Encryption

    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...

  • RE: Help understanding adhoc plans and procedure cache

    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...

Viewing 15 posts - 41,356 through 41,370 (of 49,571 total)