Forum Replies Created

Viewing 15 posts - 196 through 210 (of 247 total)

  • RE: Simple Question

    A million and one thanks! It was as easy as you described!!!!!

  • RE: Error Message when creating DB

    To me that is just a matter of permissions not ability.  Though i don't want to delete all the tests now, i would prefer to make them inactive, but years...

  • RE: Error Message when creating DB

    Not that you guys like my book MS SQL Server2000 Bible, but it makes it sound as if DRI using Cascade Deletes are preferable.

    p 320 says: "Implementing cascade deletes manually...

  • RE: Error Message when creating DB

    I don't know. For some reason, i had the impression that you had left but that you would answer when got back in. Then to see this comment, i thought...

  • RE: Error Message when creating DB

    Thanks guys!  I'm trying to understand this issue. It didn't take me long to understand what was meant by circular references. However, I didn't see what was wrong with it....

  • RE: Error Message when creating DB

    I understand Remi Gregoire. I was just giving more information because my assumptions must be wrong !

  • RE: Error Message when creating DB

    My reasoning on this is that if you delete a category, it should delete the questions that belong to it, the answer that belong to those questions.

    If there are completed_categories...

  • RE: Error Message when creating DB

    Sorry Noel. I misread. But i sent everything the last time.

  • RE: Error Message when creating DB

    Here is the script for all the tables. Thanks guys!

    Use FAE

    GO

     

    CREATE TABLE FAE.dbo.Centers

    (

     CenterID  tinyint         NOT NULL   IDENTITY   PRIMARY KEY,

     Center    varchar(30)     NOT...

  • RE: Error Message when creating DB

    CREATE TABLE FAE.dbo.EmployeeTests

    (

     EmployeeTestID     int            NOT NULL  IDENTITY  PRIMARY

                                                 KEY,

     TestID             tinyint        NOT NULL  FOREIGN KEY

                                                 REFERENCES dbo.Tests

                                                 ON DELETE CASCADE,

     EmpID              smallint       NOT NULL  FOREIGN KEY

                                                ...

  • RE: Typical Trigger Issue

    Thanks guys and Noel!

    I think i'm finally starting to understand the BOL. You can do a search and then click the contents tab and see all the related info in...

  • RE: When to use Stored Procedures

    Gimli, he does seem to differentiate on this point.

    ( I had explained a little more but every now and them my info gets lost when i press post reply.)

     

  • RE: Typical Trigger Issue

    Thanks very much Dylan!  I  have a lot to learn. I'm in the process of looking up info so i can understand deleted and inserted tables better.  Now i see,...

  • RE: When to use Stored Procedures

    That was all it said on that page. And i do understand that a book for novices, like myself, tends to over simplify.

    The statement, i quoted earlier, was the first...

  • RE: When to use Stored Procedures

    I find that very interesting guys! My book MS SQL Server 2000 Bible says under Stored Procedures page 403: "Store procedures are compiled and the fastest possible means of executing...

Viewing 15 posts - 196 through 210 (of 247 total)