Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)

  • RE: SQL Server 2008 Package Migration Wizard Error

    The manifest file is located in your DeploymentOutputPath. Go the the properties of your project and select "Deployment Utility" to see the path.

    As far as the registry changes...why don't you...

  • RE: Delete with a Join

    Howard is correct. Given the simplicity of the question at hand (no offense Jordan) I didn't want to potentially confuse him.

    Using NOT EXISTS is a better solution considering that it...

  • RE: Delete with a Join

    delete from users

    where userid in

    (select users.userID from users

    left join aspnet_users

    on users.username = aspnet_users.username

    where aspnet_users.UserName is null)

    Change "userid =" to "userid in"

  • RE: SQL Server 2008 Package Migration Wizard Error

    I had a similar issue.

    I have SQL 2005 Standard Edition, SQL 2008 Express with Advanced Services, VS2005, VS2008 installed on my machine. When I would try to deploy a SSISDeploymentManifest...

Viewing 4 posts - 1 through 4 (of 4 total)