Forum Replies Created

Viewing 15 posts - 46 through 60 (of 2,611 total)

  • RE: Executing SSIS job within sproc

    Enabling xp_cmdshell is done through surfact area configuration. Executing the package is basically done calling the DTExec.exe executable.

    I think you have selected the worst way to deal with your...

  • RE: Executing SSIS job within sproc

    Ok, you can run an SSIS package from a stored procedure. You can either enable xp_Cmdshell and execute SSIS using the command line syntax. Another option would be...

  • RE: Trigger Vs Stored Procedure

    A trigger is event-driven on actions against your table. A stored procedure needs to be called by something.

    They typically do not serve the same purposes. Perhaps you could...

  • RE: SSIS Projects vs Packages

    I find the data sources in the projects rather useless. They just muck up the connection information you get from local configuration files when you open a project in...

  • RE: I want to add a identity column to a already existing column in a table

    You can script things in Enterprise Manager.

    Edit the table, then rather than saving it, click the generate script button.

  • RE: SSIS Projects vs Packages

    We have a rather large data warehouse implementation here.

    For the SSIS portion of the implementation, we have a few solutions - I will describe one of them (changing some names...

  • RE: How to insert multible records in a table at atime

    Your question is not specific enough. There are lots of ways.

    Read this:

    http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]

    Then update your post.

  • RE: implement circular progress bar

    Use an animated .gif

  • RE: Strange!!!

    Open the Cube in BIDS (not the dimension) and click the cube structure tab. Make sure the attributes and hierarchies you want to see are enabled and visible (look...

  • RE: SQL or Oracle

    This seems like a pretty old programming argument with a bit of a different technology. The terms "relational" and "RDBMS" can be loosly or tightly defined. So, it...

  • RE: Foreign Key from one database to another

    Search on Google. There are a couple of 3rd party utilities that make pseudo FK's that cross databases.

    Beware, you can do this with check constraints and/or triggers, but they...

  • RE: problem with trigger

    peace2007 (2/4/2009)


    Jack Corbett (2/4/2009)


    Are you sure the user that is executing the source query has rights on the other database? Cross-Database ownership chaining is disabled by default in SQL...

  • RE: Instead of Triggers - The good and the bad

    I'll add to this...

    To me, "INSTEAD OF" triggers always feel like "INSTEAD OF DOING IT CORRECTLY" triggers. They are great for a stop-gap when you need to make a...

  • RE: Question Performance issue - LEFT OUTER JOIN in query showing RIGHT OUTER JOIN in Execution

    Posting the DDL and the execution plans will be helpful and get you better responses. Here are some tips on how to post:

    http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]

  • RE: How to validate parameter in SSRS

    Set the data type of your parameter to a date and you will get a date picker control (assuming you are using report manager).

Viewing 15 posts - 46 through 60 (of 2,611 total)