Forum Replies Created

Viewing 15 posts - 46 through 60 (of 84 total)

  • RE: Inplace upgrade from sqlserver 2000 to sqlserver 2005

    Looks like this is route we will take. We will upgrade all the instances and not have a mix of 2000 and 2005 as these are clustered instances. Applications that...

  • RE: NEED Help - Migrating DB from 2000 / 2005

    sp_sendmail is disabled by default.

    Also I am not worried about the DTS packages / maintenance plans.

    I am a little confused on the MSDB messages I got on the upgrade advisor.

    I...

  • RE: NEED Help - Migrating DB from 2000 / 2005

    I am planning the same: backup old and restore to sql server 2005. My 2000 dbs have nothing fancy:

    1. Regular maintenance plans: backup/Optimize/check integrity ...

    2. Some instances have simple DTS...

  • RE: restored db in loading mode

    I re-restored the db and it came up right away.

  • RE: DTS not seeing the instance

    That works, thanks,

    I am surprised that an alias was gone. Not sure how this got deleted.

  • RE: script to generate db scham of all the databases in a sql server instance

    thanks Lowell, I figured this out.

    Coming back, the KB is confusing. It says use getUTFdate() in TSQL stmts  instead go getDate()  for dateDiff/dateAdd functions. But does not say the same while setting...

  • RE: logins integrated with AD

    found it!. The apps had locked some tables and so the error!.

    thanks

  • RE: cartisean product

    The SP will get fname+lname = user from a 3rd table...

     

  • RE: cartisean product

    got it! while creating sample data. There is no way that I can relate table1.field2 and table2.field4.

    group1           fname lname

    group1           fname2 lname2

    group1           fname3 lname3

    group1           fname4 lname4

    group1           fname5 lname5

    table2

    field3           field4

    group1             user1

    group1             user2

    group1            ...

  • RE: cartisean product

    In this case:

    table1: -  field1, field2

    table2: - field3, field4

    field1=field2

    so distinct/group by  of all the output:

    field1, field2, field3, field4 is distinct as field2 and field4 have different values. ???

     

  • RE: cartisean product

    I get the same results:

    with distinct or with group by or none of the 2: straight joins as I had in the begning.

     

  • RE: cartisean product

    Does not care with with either DISTINCT or Group by  ??

    Did not think this will be so complicated

     

  • RE: cartisean product

    select t1.*, t2.*

    from table1 t1

     inner join table2 on t2.field3 = t1.field1

    where t1.field1 = 'char 200'            

    I want field1, field3, field4 --?

  • RE: SQL/DTS with windows authentication

    When I use integrated security=SSPI, there is no need for uid/pwd. does this read my credentials ?

    The following works in SQL QA:

    select 

    field1, field2.....

    from OPENDATASOURCE(

     'SQLOLEDB',

     'Data Source=SERVER IP,PORT;Integrated Security=SSPI;'

    &nbsp

  • RE: Problem trying to modify a table

    I was in a similar sitituation. I first updated the column to a space and than alterted the table  to not allow nulls.

    Depending upon number of records and data type,...

Viewing 15 posts - 46 through 60 (of 84 total)