Forum Replies Created

Viewing 15 posts - 10,366 through 10,380 (of 13,874 total)

  • RE: SQL 2005 SSIS package error

    Seems like you are maybe not the first to experience this. Have a look here and maybe you'll find some clues.

    Was an eval version ever installed on this server?

  • RE: Latest file picking from the folder

    OK, I doubled up on the slashes within the path, and put four slashes at the beginning to indicate the UNC path. My expression evaluates to this.

    \\johnson\clientFTP\users\UBM\ATOM\GEN_V2_DAT_ENT_IUXA9_PRE_20121101_888888.txt

    I set the connection...

  • RE: SQL 2005 SSIS package error

    SQLCrazyCertified (11/1/2012)


    SSIS package jobs are failing in DEV/IST due to the following error.

    Please let me know if you could help.

    Error: 2012-10-31 01:00:14.73

    Code: 0xC0000033

    Source:...

  • RE: trying to export to .CSV with comma delimited AND double-quotes

    cmcc (11/1/2012)


    🙁

    Didn't work.

    Getting this

    ...is too long. Maximum length is 128.

    I use a view for the data, which is short enough.

    It's getting the column names output that is causing me...

  • RE: SELECT DISTINCT AND ORDER BY CASE

    dwain.c (10/31/2012)


    28.kanikasoni (10/31/2012)


    Hi,

    Thanks 4 ur solution but I am getting error in order clause

    Incorrect syntax near the keyword 'order'.

    Incorrect syntax near the keyword 'ELSE'.

    Incorrect syntax near the keyword 'ELSE'.

    Try removing...

  • RE: Move file from Network drive to a new Folder

    Not that I've tried, but it looks like this will work:

    1) Create a File System Task.

    2) Change Operation to 'Create directory'

    3) Change Use Directory If Exists to true.

    4) Set the...

  • RE: Move file from Network drive to a new Folder

    A very simple Script Task could check whether the folder exists and if not, create it.

    Then do your file copy.

  • RE: Error :t" property not set correctly, parameters not set correctly, or connection not established correctly.

    Pink123 (10/31/2012)


    I have an SSIS job running in production.The job failed today with an error message

    Executed as user: Test\SQLService. t" property not set correctly, parameters not set correctly, or connection...

  • RE: SELECT DISTINCT AND ORDER BY CASE

    Just add the CASE construct to your SELECT. The CASE construct can be made more compact too:

    select distinct VacancyInternalID

    ,VacancyTitle

    ,null ParentInternalID

    ,null GeoLocation

    ,

    order = (

    case @SortFieldIndexConfig

    when 2

    then VacancyTitle

    else VacancyInternalID

    end

    )

    from Vacancy.TB_Vacancy va

    inner join...

  • RE: error in script component

    Any help?

    Recompile the script using the Script Component Editor?

  • RE: Pass variable to Openquery

    Elliott Berkihiser (10/29/2012)


    Re: "OpenQuery does not accept variables" --

    This runs fine in my set-up:

    Select * from OpenQuery(MyLinkedServer,'Declare @name varchar(50) Set @name=''RemoteDB'' Select * from sys.databases where name=@name')

    Note the declaration...

  • RE: upload using flat file source

    harri.reddy (10/25/2012)


    my file is like this

    TH*4.2*857463*01**20091015*1045*P**~~IS*7564*ORACLE~

    i have two table

    table : TH

    ID TH1 TH2 TH3 ...

  • RE: How to compare current row with previous row

    bobd125 (10/25/2012)


    Thank you for advice. In this case it's a flat file. I could start a new thread but since I've got your ear, I ran into...

  • RE: SQL statement run info in Stored Proc

    dwilliscp (10/23/2012)


    When you run a sql statement, in Server Management Studio, it tells you how many rows and how long it took, how do you get a stored Proc to...

  • RE: running sum cursor

    Suppose you have a large database and lots of users. Using the update method, I doubt that two users can pull the same report...running sum, at the same time.

    I...

Viewing 15 posts - 10,366 through 10,380 (of 13,874 total)