Forum Replies Created

Viewing 12 posts - 46 through 57 (of 57 total)

  • RE: Dynamically Build Table Data Type

    The script below is part of a large batch script to create shadow tables (same field names and datatypes)

    with additional fields.  Embed part of this or similar code into a...

  • RE: MS SQL SERVER 2005 beta

    I have managed to create a simple database in SS2005 express.  I connected from C# esxpress beta1, opened a query and entered create database <dbname>.  I got an error message...

  • RE: Bug in instead of update trigger

    I have to correct myself. This is not a bug.  The update statement must fail on the row where F4 is null.  From the view's perpective this row does not...

  • RE: MS SQL SERVER 2005 beta

    I have spent a few nights this week installing SQL Server 2005 Express and C# Express. It took some time to prune my system drive sufficiently on my old spare...

  • RE: Local vs global cursor

    Thanks for the URL, interesting article, doesn't mention speed implications tho'.  Maybe there is no difference.

    Cheers,

    Win

  • RE: Running only one instance of a trigger

    You can turn off recursive triggers which is global for a database or include some code at the start of a trigger to terminate the trigger if an instance of...

  • RE: i get the following errors when i run the package.

    If you get the same error messages as before: ora-03113 followed by ora-12571 it means your packet did not arrive because you got kicked off the oracle instance. You...

  • RE: i get the following errors when i run the package.

    The ora errors indicate that you are killing or diconnecting your session to the oracle instance. I assume you are executing a public procedure inside an oracle package from...

  • RE: SQL Server VS. Oracle

     A primary key uniquely identifies a row in a table by definition. In changing the value of it's unique identifier, you have created a new...
  • RE: SQL Server VS. Oracle

    quote:


    Again, however, you are trying to apply procedural logic to a set based system. Databases are not meant to be procedural....

  • RE: SQL Server VS. Oracle

    My comments to cascading updates particular in a master-detail data model:

    In SS the order of deleted and inserted rows (after statement) can get out of sync if the primary key...

  • RE: SQL Server VS. Oracle

    I develop in both environemnts. Usually, I remain a couple of weeks in one environment to reduce the number of transition errors. It helps to look at problems...

Viewing 12 posts - 46 through 57 (of 57 total)