Forum Replies Created

Viewing 5 posts - 1 through 5 (of 5 total)

  • RE: SSD Lifetimes

    Surely the very fact that you get a clearer picture of the impending expiry of the drives makes it less necessary to stage out the drive ageing? I'd be more...

  • RE: Copy Table Structure Without Data Using 1 Line Query

    use tempdb

    go

    create table test (var1 int identity(1,1) constraint pk_test primary key clustered, var2 varchar(100))

    go

    create index ix_test on test(var2)

    go

    insert test(var2) select 'a'

    insert test(var2) select 'a'

    insert test(var2) select 'a'

    insert test(var2) select 'a'

    insert...

  • RE: Copy Table Structure Without Data Using 1 Line Query

    Thing to bear in mind with this is the new table is written to the default filegroup, does not recreate the indexes and reseeds any identity specification back to the...

  • RE: Invalid character error when adding existing package

    Hi,

    The only time I've seen that error is when loading a file that contains non-printable characters within an xml value (such as a separator in an input connector definition), an...

  • RE: Can We Skip the Marketing?

    ^^ What these said.

    My own tuppenceworth also is that while I understand the comment, and would love to have Itzik Ben Gan determining the content of some of these presentations,...

Viewing 5 posts - 1 through 5 (of 5 total)