Forum Replies Created

Viewing 15 posts - 4,276 through 4,290 (of 14,953 total)

  • RE: What's going on here?

    Scott-144766 (5/18/2011)


    Thanks for the reply. I can confirm there are no spaces in the object name or in the SQL code I posted.

    This piece, as you posted it, has a...

  • RE: Are the posted questions getting worse?

    Brandie Tarvin (5/18/2011)


    Jim Murphy (5/17/2011)


    Koen Verbeeck (5/17/2011)


    And now I've reached the 5000-points milestone.

    W00t w00t! :w00t: 😎 :hehe:

    Ahem.... Back to the tasks at hand... 😀

    Excellent! Good job helping the community.

    Wait....

  • RE: What's going on here?

    There's a space in the object name. If you have spaces, or a variety of other characters, in the object name, you have to enclose it in square-brackets to...

  • RE: Database Kill

    GilaMonster (5/17/2011)


    Oh, forgot to ask. Is this a distributed transaction? (some reference to a remote server)?

    Yes. It's an ETL staging database that pulls from one server and feeds to...

  • RE: Are the posted questions getting worse?

    Brandie Tarvin (5/17/2011)


    jcrawf02 (5/17/2011)


    Data Analyst job will be opening up soon where I work (not mine) in Columbus, OH. Mostly report writing, some dev work in SSRS/SSIS, rest is trending...

  • RE: Database Kill

    free_mascot (5/17/2011)


    Before restarting the server How about running DBCC CHECKDB to check database consistancy and any errors?

    If able to get sufficient time to perform it as a safer side....

  • RE: Stored procedure Execution with Prompt "Overwrite or not"

    If you want to flag a row for replacement, you'd do that in the table itself.

    Add a column "UpdateFlag" to the table. You could either make it a bit...

  • RE: Database Kill

    Yeah, probably best to try that first.

  • RE: Stored procedure Execution with Prompt "Overwrite or not"

    You theoretically could that in the table and procedure.

    Add a "flagged for update/replacement" type column. If the query finds a row exists with the requested values, it flags that...

  • RE: How to consume the result set of one stored procedure from inside another stored procedure?

    A dataset returned the calling proc is, by default, returned to the client.

    Here's a proof-of-concept demo:

    USE ProofOfConcept;

    GO

    CREATE PROC MyInnerProc

    (@Param_in INT)

    AS

    SELECT @Param_in AS MyInnerProcValue;

    GO

    CREATE PROC MyOuterProc

    AS

    EXEC MyInnerProc 1;

    GO

    EXEC MyOuterProc;

    Is there a...

  • RE: Are the posted questions getting worse?

    Peoplesoft and JD Edwards are Oracle products, not Oracle competitors. The survey was about Oracle products, not just about their database engine, so it would naturally include both of those.

    Ah,...

  • RE: Are the posted questions getting worse?

    Jack Corbett (5/16/2011)


    Gus,

    It was great to see you at SQLRally and I'm glad you found it valuable and valuable enough to consider attending the Summit. That was one of...

  • RE: Are the posted questions getting worse?

    Stefan Krzywicki (5/16/2011)


    GSquared (5/16/2011)


    Stefan Krzywicki (5/16/2011)


    Here's an interesting article on Oracle satisfaction[/url]

    SQL Server's not even mentioned, I guess we have a way to go in being considered suitable for very...

  • RE: A little help wrapping my mind around a Set Based solution?

    Actually, the thing to look at is: If it's order-dependent, is it a good idea to try to make it "set based"?

    Sets, in relational theory, are naturally unordered data. ...

  • RE: Are the posted questions getting worse?

    Stefan Krzywicki (5/16/2011)


    Here's an interesting article on Oracle satisfaction[/url]

    SQL Server's not even mentioned, I guess we have a way to go in being considered suitable for very large databases. A...

Viewing 15 posts - 4,276 through 4,290 (of 14,953 total)