Forum Replies Created

Viewing 15 posts - 10,801 through 10,815 (of 13,872 total)

  • RE: SSIS and "connection is not valid" error

    OK - do you have SSIS installed on both servers? Merely executing the command line is not sufficient.

  • RE: Help with placing condition - SQL Statement

    Here's a CTE example:

    with Table_A as (select 10844 x_No, 2 Rank2, 18178 sysno, 1 Rank1

    union select 10844, 4, 27529, 2

    union select 10845, 1, 22994, null

    union select 10845, 3, 22129, null...

  • RE: SSIS and "connection is not valid" error

    DBAgal (4/10/2012)


    I have a SSIS package that needs to write to a share on a server separate from where the package is executing. I can execute the package from...

  • RE: Not able to remove trailing space

    EasyBoy (4/10/2012)


    preetham gowda (4/10/2012)


    See if you can change the dataType from char to varchar and update the coulmn by trimming it.

    I did try converting Char to Varchar but getting the...

  • RE: How to convert this XML into columns

    njdevils39 (4/9/2012)


    By the way, I also do not work yet or get paid. I am an unpaid intern learning to advance my programming knowledge.

    You're receiving high-quality, free assistance and advice...

  • RE: Error in Script Task

    subha V (4/9/2012)


    Hi,

    Im running my package using a command file.When im executing the package manually by clicking the command file,its running fine.

    But when im trying to run the package via...

  • RE: SQL JOBS

    mdkmohan (4/8/2012)


    Hi,

    I just need to disable sql jobs during holidays.

    I found few ways for doing that but I don't know which is more efficient and generalized method.

    Kindly provide your suggestion...

  • RE: how to monitor a website through database table

    sivag (4/7/2012)


    how to create log file and plz tell me what is log file here iam using website for advertising ads...

  • RE: Display duplicate records in table query - Message 4145 error

    bharatgi (4/6/2012)


    the key field is a concatenate of LocalID + DSeen + POD

    Hmm, clearly not, as you have duplicates 🙂

    I'm therefore guessing that this table does not have a PK,...

  • RE: how to Get CSV of a column from a table.

    Google some FOR XML PATH queries and you'll crack this soon enough.

  • RE: Display duplicate records in table query - Message 4145 error

    bharatgi (4/6/2012)


    thanks - but how do i display both duplicate records in the same query?

    Do you have a unique key on this table?

  • RE: Display duplicate records in table query - Message 4145 error

    Try this:

    select

    [SLA]

    ,[PCCode]

    ,[PrCode]

    ,[LocalID]

    ,[DateOfBirth]

    ,[Number]

    ,[ATariff]

    ,[DSeen]

    ,[MPI]

    ,[Service]

    ,[POD]

    ,[Device]

    ,[ActivityDate]

    ,[SeenDate]

    ,[DateActivity]

    ,[Period]

    , Count(*) [Count]

    FROM [PROV].[dbo].[DA]

    group by

    [SLA]

    ,[PCCode]

    ,[PrCode]

    ,[LocalID]

    ,[DateOfBirth]

    ,[Number]

    ,[ATariff]

    ,[DSeen]

    ,[MPI]

    ,[Service]

    ,[POD]

    ,[Device]

    ,[ActivityDate]

    ,[SeenDate]

    ,[DateActivity]

    ,[Period]

    having count(*) > 1

  • RE: Datat is not Loading

    Andy Hyslop (4/6/2012)


    Phil Parkin (4/6/2012)


    Are you saying that it works when you run it manually but not when it is run as a scheduled job?

    I got the impression that no...

  • RE: insert values

    So what? You're in a 2005 forum.

    If I told you that my car was 'not working', would you know how to fix it?

  • RE: Datat is not Loading

    Are you saying that it works when you run it manually but not when it is run as a scheduled job?

Viewing 15 posts - 10,801 through 10,815 (of 13,872 total)