Forum Replies Created

Viewing 15 posts - 21,361 through 21,375 (of 22,184 total)

  • RE: Columns to store different data types

    Indexing for data retrieval would be my biggest concern. Why would you store... anything, in a column like that?

    Personally, I'd probably look to storing the stuff as XML instead of...

  • RE: Automatically to generate a db objects' scripts ?

    It's possible they're remove it in the future. I'm looking at the 2008 documentation. It's there and says the same thing. It's pretty basic functionality, generate a script. Even if...

  • RE: COMPLEX STORE PROCEDURE

    I know I could be off, but that sure looks like homework.

    If you post what you tried that didn't work, you're sure to get help. Just trolling for someone to...

  • RE: How do I reuse Transactional Logs?

    "Should get paid" ?

    I thought Steve was paying us for this?

    Hey, get that guy over here...

    😎

  • RE: How do I reuse Transactional Logs?

    The key word and tricky phrase to take away from the description of this column in books online is: "... reuse of transaction log space..." This means that it will...

  • RE: How do I reuse Transactional Logs?

    Me too. I've never heard the phrase "reuse logs" applied to SQL Server.

    I mean, we "reuse" them all the time. The same log file is cleaned out, whether you're in...

  • RE: Deadlock Errors

    If it's that severe, you might want to try "turning off" parallelism by setting the MAXDOP to 1 for the server, but it's just a band-aid at this point.

    If this...

  • RE: Deadlock Errors

    It's an advanced setting within the properties of the server. The default is usually zero.

    This is the script from BOL

    sp_configure 'show advanced options', 1;

    GO

    RECONFIGURE WITH OVERRIDE;

    GO

    sp_configure 'max degree of parallelism',...

  • RE: How do I reuse Transactional Logs?

    ALTER DATABASE dbname

    SET RECOVERY SIMPLE

  • RE: SQL IDE options

    2008 does have intellisense. So far, I've found RedGate's to be better.

  • RE: DML Triggers

    That's just what I was going to point out. I even went & checked it in BOL.

  • RE: FASTFIRSTROW hint

    No. This wouldn't be helpful to you at all. In fact, it would probably hurt performance.

  • RE: FASTFIRSTROW hint

    You're operating under a slight misconception. FAST 'n' (or FASTFIRSTROW) doesn't give you faster response time. It gives you slower response time with the appearance of faster responses. The hint...

  • RE: Trace Flags 1204 and 1205 :crazy:

    That's certainly not a ringing endorsement. Anything in particular force the change back?

  • RE: SQL IDE options

    Still sounds like you might want to try out VSDB.

Viewing 15 posts - 21,361 through 21,375 (of 22,184 total)