Forum Replies Created

Viewing 15 posts - 1,576 through 1,590 (of 5,393 total)

  • RE: Create a trigger with a stored procedure

    Try this instead:

    CREATE PROCEDURE [dbo].[InsertTRIGGER](@databaseA varchar(50))

    AS

    BEGIN

    DECLARE

    @sql nvarchar(max),

    @statement nvarchar(max)

    SET @statement = '

    CREATE TRIGGER [P62XB1].[JPDSAD1] ON...

    -- Gianluca Sartori

  • RE: Are the posted questions getting worse?

    To say it with Bertolt Brecht's words: " What is robbing a bank compared to founding a bank?" 😉

    -- Gianluca Sartori

  • RE: Are the posted questions getting worse?

    mtillman-921105 (6/1/2012)


    So I suppose a lot of people rent in Europe?

    70% of Italians own the house they live in.

    Well, sort of.

    Who owns the house while you're paying the mortgage? You...

    -- Gianluca Sartori

  • RE: stored procedure library

    I would recommend SQL Server Data Tools.

    It's the new development IDE for database projects that Microsoft released with SQL Server 2012 and it works with databases from 2005 on.

    See here...

    -- Gianluca Sartori

  • RE: Capacity Planning

    This should get you on the right track:

    http://msdn.microsoft.com/en-us/library/ms187445.aspx

    -- Gianluca Sartori

  • RE: I need only SQl Server Agent

    paul.knibbs (5/25/2012)


    He did say he felt SQL Agent is more robust than Windows task scheduler, but it would be interesting to know why he feels that...I've rarely run into issues...

    -- Gianluca Sartori

  • RE: Why DDL Cannot be part of a Tran

    Not sure what you mean.

    DDL can be part of a transaction:

    BEGIN TRAN

    CREATE TABLE test (someColumn int)

    ROLLBACK

    SELECT *

    FROM test

    Msg 208, Level 16, State 1, Line 7

    Invalid object name 'test'.

    -- Gianluca Sartori

  • RE: I need only SQl Server Agent

    Sorry to say that, but I don't think you should be using SQL Server Agent as a job scheduler if you don't need SQL Server in the first place.

    There are...

    -- Gianluca Sartori

  • RE: Are the posted questions getting worse?

    What are you all talking about?

    Oh, I see .... the "other" football, the one with the lousy-shaped ball. 🙂

    -- Gianluca Sartori

  • RE: Are the posted questions getting worse?

    Revenant (5/22/2012)


    Gianluca Sartori (5/22/2012)


    Thanks everyone for the suggestions and opinions.

    If everything goes well, I won't be working as a trainer any more.

    I'm negotiating a contract as DBA/DBD. It's going to...

    -- Gianluca Sartori

  • RE: Are the posted questions getting worse?

    Thanks everyone for the suggestions and opinions.

    If everything goes well, I won't be working as a trainer any more.

    I'm negotiating a contract as DBA/DBD. It's going to be a life...

    -- Gianluca Sartori

  • RE: Are the posted questions getting worse?

    Lynn Pettis (5/22/2012)


    Gianluca Sartori (5/22/2012)


    L' Eomot Inversé (5/22/2012)


    Gianluca Sartori (5/22/2012)


    2 - In every class there's at least one smartass that thinks he knows better than the instructor. So, let me...

    -- Gianluca Sartori

  • RE: Application Login Best Practices

    opc.three (5/22/2012)


    Possibly, a good recommendation depends on a lot of info we do not have. does the app need cross-database access? does the app need access to server-level metadata? are...

    -- Gianluca Sartori

  • RE: Are the posted questions getting worse?

    Revenant (5/22/2012)


    Gianluca Sartori (5/22/2012)


    . . . Has any of you worked as a trainer? Thoughts?

    Yes, I did -years ago, for IBM.

    I mention it because they expected, and paid, 5 days...

    -- Gianluca Sartori

  • RE: Are the posted questions getting worse?

    L' Eomot Inversé (5/22/2012)


    Gianluca Sartori (5/22/2012)


    2 - In every class there's at least one smartass that thinks he knows better than the instructor. So, let me ask, why did you...

    -- Gianluca Sartori

Viewing 15 posts - 1,576 through 1,590 (of 5,393 total)