Forum Replies Created

Viewing 15 posts - 9,586 through 9,600 (of 14,953 total)

  • RE: Are the posted questions getting worse?

    Roy Ernest (5/6/2009)


    I sound just like my avatar....:hehe:

    LOL!

  • RE: BREAKDOWN DATE CALCULATION

    The DateAdd Year part gets you the first day of the delivery year. If you subtract 1900 from the year, and add that to 1/1/1900, you get 1 Jan...

  • RE: Are the posted questions getting worse?

    Oh, and I agree with Bob, I'd love it if everyone sounded like their Avatar. Of course that make Flo a tired and irritable Garfield.

    Since I don't have an...

  • RE: Are the posted questions getting worse?

    Okay. I couldn't stop myself. Had to try it.

    create table dbo.[Table] (

    [Identity] int identity primary key,

    [Column] varchar(100),

    [*] int,

    constraint [ForeignKey] foreign key ([*]) references dbo.[Table]([Identity]));

    go

    create index [Index] on dbo.[Table]([Column])

    include...

  • RE: Are the posted questions getting worse?

    Maybe I have the volume on my speakers turned down to far, but I haven't noticed anyone's avatars making any noises at all... (cuz I'm a blonde, yeah yeah yeah!)...

  • RE: Why index is not being utilized

    Do an online search for "SARGABLE" with regard to indexes and where clauses. There are some very good articles on the subject. I believe the coalesce will prevent...

  • RE: How could these queries be blocked?

    Are there FKs that connect those tables? It seems like the delete might cause those to come into play, if they are there.

  • RE: MS Access Form

    I can't tell from your post whether you have a question on what I wrote, or whether you're just making a general statement.

  • RE: How to add columns to a table without neither re-creating it nor using the alter table command

    joseph s (5/6/2009)


    Hey What are you talking about?? partioning columns, could you give an example??

    Please do not misguide people

    Partioning is only applicable for rows

    Horizontal partition is applicable for rows. ...

  • RE: Backup Strategies

    The frequency and all that will depend on your backup and recovery needs.

    So long as your full backups are going onto tape or something of that sort, overwriting the old...

  • RE: DDL Triggers

    I wouldn't use a DDL trigger for this. I'd have a backup job that looks for what databases I have and backs them up. Set it up once...

  • RE: Flash

    Steve, we're actually agreeing on all points.

    Judging by the price/capacity curve on SSDs over the last 10 years, I think viability for SMBs is probably 2-3 years off as a...

  • RE: how to enable auditing in sql server 2005

    Option should definitely exist. Is it possible you don't have the necessary security rights to access it?

  • RE: how to enable auditing in sql server 2005

    What edition of SQL Server are you using? Express? Standard? Enterprise? Workgroup?

  • RE: Flash

    I'm sure this technology will continue to evolve, and eventually we'll have 1TB sized flash memory drives that live in our servers, and possibly even laptops or phones. That's quite...

Viewing 15 posts - 9,586 through 9,600 (of 14,953 total)