Forum Replies Created

Viewing 15 posts - 2,416 through 2,430 (of 5,356 total)

  • RE: MMC Error -Enterprise Manager-HELP!

    This happened twice to me. Don't know why, but somehow this *.msc file became corrupted. Jim's method is probably the quickest one to get back on track.

  • RE: How can i create a flat file (text file) ?

    Not that I know much about DTS, but I once tried this and it is really simple with DTS. If you need this on a regular basis like daily, schedule...

  • RE: convert

    This also is likely to happen when you have complex calculations to do. I have seen mainframe listing using log() and ln() stuff just to work around this impreciseness.

    Fortunately...

  • RE: quick newbie auto increment question

    truncating the table has the same effect

    set nocount on

    if object_id('idt') is not null

    drop table idt

    go

    create table idt(

    col1 int identity(1,1) primary key )

    go

    insert into idt default values

    select * from idt

    truncate table...

  • RE: probably a n00bie sort question

    set nocount on

    if object_id('test_q') is not null

    drop table test_q

    go

    create table test_q(

    m char(3),

    b char(3),

    l char(3)

    )

    insert into test_q (m,b,l) values('10','10','1')

    insert into test_q (m,b,l) values('10','10','2')

    insert into test_q (m,b,l) values('10A','10','2')

    insert into test_q...

  • RE: probably a n00bie sort question

    select * from test_q order by left(m,2),b,l

    results in

    m    b           l          

    ---- ----------- -----------

    10   10          1

    10   10          2

    10A  10          2

    10   10          3

    (4 row(s) affected)

  • RE: probably a n00bie sort question

    One way would be

    if object_id('test_q') is not null

    drop table test_q

    go

    create table test_q(

    m char(3),

    b int,

    l int

    )

    insert into test_q (m,b,l) values('10',10,1)

    insert into test_q (m,b,l) values('10',10,2)

    insert into test_q (m,b,l) values('10A',10,2)

    insert into test_q...

  • RE: So frustrating

    Andy, just made the experience that copy and paste of a username does NOT work in Mozilla like in IE. Mozilla pastes as plain text while IE keep the hyperlink...

  • RE: Help a newbie....please???

    Just call him noeld

  • RE: Constraint Name in the Generated SQL

    Might be another reason to stay away from EM

  • RE: So frustrating

    As for me, it's completely okay without them

  • RE: sp_executesql question

    Thanks for the info.

    SQL 2k improved greatly on caching dynamic statement. So no suprise with SQL 7 being less efficient.

     

  • RE: Maximum length of a Varchar Variable

    Once again Notepad

    QA code formatting is lost when copying.

    Maybe we should opt for Word as editor

  • RE: sp_procoption not working

    Did you create it in the master db?

  • RE: Constraint Name in the Generated SQL

    I don't know of a *general* setting for this. Are you sure you always check this option when generating a script?

Viewing 15 posts - 2,416 through 2,430 (of 5,356 total)