Forum Replies Created

Viewing 15 posts - 16 through 30 (of 62 total)

  • RE: DYNAMIC SQL

    Thanks a millions Elliot....!

  • RE: DYNAMIC SQL

    Thanks Elliott! that worked but still the job failed with this message

    Message

    Executed as user: . Microsoft (R) SQL Server Execute Package Utility Version 10.0.4000.0 for 32-bit Copyright (C)...

  • RE: DYNAMIC SQL

    I came up with a solution

    DECLARE @cmd VARCHAR(4000)

    DECLARE @ID INT

    SET @ID = 1

    SELECT @cmd = '/FILE "C:\Packages\Test Folder\Package.dtsx" /CONFIGFILE "C:\Packages\Test Folder\Package.dtsConfig" /SET "\Package.Variables[User::ID].Properties[value]";'

    SELECT @cmd = @cmd+ CONVERT(VARCHAR(100), @ID) + '/CHECKPOINTING...

  • RE: Get the count of a result set

    Hi Jeff,

    That worked for me......But in order to do that I have to write a stored proc for all the databases which they dont want to do.....

  • RE: script task error

    Thanks! lewis..... that helped me

  • RE: script task error

    Thanks! for your reply.

    I have a sql task which executes a query and stores the result set in a xml result set. i have to send an email of this...

  • RE: Get the count of a result set

    I'll Explain it again.

    I have a variable which holds all the sql commands to be executed. So in the sql task the sql source type is variable. So the...

  • RE: Get the count of a result set

    Thanks! Leju. But i dont understand the xml task path

    XML Task properties:

    OperationType: XPATH

    SourceType: Variable

    Source: User::varResults

    SaveOperationResult: True

    Destination: User::varRowCount

    SecondOperand: count(//table1)

    so in the second operand do we have to type count(//table1)

    in the xml...

  • RE: need help to select rows

    Thank you allen...

  • RE: need help to select rows

    @GSquared:

    Thank you soo much....i finally got it

  • RE: need help to select rows

    Thank you....but im working on sql server 2000...sorry should've told you first...

  • RE: need help to select rows

    the max orderdate is the maximum date for each order id for example

    if u look at the table for orderid efgh there are three records and the maximum orderdate for...

  • RE: Script task

    Thank you....that helped me....

  • RE: parsing email id from string

    thanks got it......is there any other way instead of a single select statement.....which is beter than the queries posted in the challenge.

  • RE: parsing email id from string

    they haven't yet....i need that solution....cause im dealing with the same scenario right now....

Viewing 15 posts - 16 through 30 (of 62 total)