Forum Replies Created

Viewing 15 posts - 13,246 through 13,260 (of 39,898 total)

  • RE: Working on stored procedures

    Kenneth.Fisher (8/27/2012)


    It seems that if your query references a missing table the SP will be allowed regardless of what else is wrong with the query.

    This is deferred resolution and it...

  • RE: use a variable to identify table in FROM statement

    Stored procedures are just sets of code, like a batch you'd run from SSMS.

    you add a header with parameters like this:

    create procedure MyProc

    @myvar varchar(20)

    as

    Then you add the code...

  • RE: Working on stored procedures

    mandeep_nyc (8/27/2012)


    if you run the script as it is, it will fail because a GO is requried.

    Secondly, I just ran this in a new database, and when creating the proc's...

  • RE: Working on stored procedures

    kent_secher (8/27/2012)


    sam.dahl (8/26/2012)


    Firstly, "I have two stored procedures" suggested to me that the scripts we were executing were the actual stored procedures not necessarily the create scripts depicted.

    That was my...

  • RE: dead connection detection

    Clients typically don't start a process on the server and hold locks. When an application SELECTs data, and the data is returned, there are no locks held while the user...

  • RE: Outsourcing Jobs

    djackson 22568 (8/27/2012)


    Companies used to have/show loyalty to employees. As a result, employees were loyal in return. For a very long time companies have thrown loyalty out the...

  • RE: Ten Million Lines of Code

    Antares686 (8/27/2012)


    This is great if your source is 10 million lines of code, but they still have to trace out the changes that caused the failure via the coders who...

  • RE: Outsourcing Jobs

    Abrar Ahmad_ (8/27/2012)


    [font="Verdana"]

    Good pick and debatable topic!

    ...

    Also the trend/need to switch towards cloud computing may also leverage jobs in big DWH etc to equate the Layoff of small offices?

    [/font]

    Thanks, but...

  • RE: Outsourcing Jobs

    GSquared (8/27/2012)


    OWA? I found several definitions, none of them make sense in this context. Outlook Web Application, Open Wireless Architecture, Oracle Web Application, and so on.

    I believe David...

  • RE: Ten Million Lines of Code

    ddriver (8/27/2012)


    I don't think that Quickbooks should be held up as an example of quality software or quality software processes. I am really not surprised that they took ten million...

  • RE: MDF File of MS SQL Server 2008 is Corrupted

    As Gail noted, you haven't given any details.

    Have you run a DBCC CHECKDB? (DO NOT run the repair with data loss option).

    Are there errors in the error log or from...

  • RE: dead connection detection

    How does the client grab a lock? If your application is built to hold locks on tables, even for seconds, you are killing concurrency.

  • RE: SQL Server 2008 R2 - completed with errors

    If there was a warning or non-critical error, things might work.

    SQL Server is rock solid on this stuff. I never worry about this losing data from the server. Now my...

  • RE: dead connection detection

    There are timeouts for clients, and when a client has a query running, there is some communication back to the client. I'm not sure that the timeouts are, but if...

  • RE: SQL Beginner

    shikhar_0511 (8/25/2012)


    Actually the data consist of tonnage from each and every origin to each and every destination .... For the return trip from Texas a tonnage value of 0 will...

Viewing 15 posts - 13,246 through 13,260 (of 39,898 total)