Forum Replies Created

Viewing 15 posts - 106 through 120 (of 241 total)

  • RE: Function usage - help needed!

    Strictly for what it's worth:  I program in the "paranoid" style.  That is, trust no inputs, trust no database contents, trust no one, trust nothing.  As a result, my procedures...

  • RE: Function usage - help needed!

    Should you be testing for a returned NULL from the function?

  • RE: Gloabl Variable

    You can simulate global variables by declaring a global cursor that will be visible to all processes under the purview of your report.  You can then test the existence of...

  • RE: SQL query that includes *all* table rows

    You can use a CROSS JOIN on the table for which you want all rows returned.

  • RE: Is Replication the answer

    If you're restoring from backups, you will be overwriting all database objects in the development database.  You'll need to keep any dev table definition changes, procedures, functions, etc. that you...

  • RE: how to get the row number

    > You have no idea

    Yes, I do. 

  • RE: how to get the row number

    My two cents:  It's relative to a lot of things, including whether your DBMS is busy busy busy, or whether it sits there bored all day like the Maytag repairman. ...

  • RE: Reading Text file

      /*

      ||=======================================================

      || No warranties.  Use at own risk.  This is intended to

      || help; if you find it unhelpful, please discard...

      ||

      || The @filename variable...

  • RE: how to get the row number

    SELECT IDENTITY (INT, 1, 1) seq, first_name INTO #cust2 FROM customers

    SELECT * FROM #cust2 ORDER BY seq

    Not efficient, but effective.

  • RE: Using Parameters with Stored Procedures

    Maybe we've been dealing with the wrong vendors.

  • RE: Using Parameters with Stored Procedures

    From what I've been seeing in recent years, the industry trend is moving away from using stored procedures.  This is not necessarily due to simple ignorance on how stored procedures...

  • RE: osql syntax when port default

    Sorry, I missed the comment where you specified you weren't using the default port setting.  No experience, there.

  • RE: Is Replication the answer

    > If you're a public corp I'm sure it would violate Sarbanes Oxley standards.

    I don't even know what Sore Ben's Oxnard is, if it isn't a town on the...

  • RE: osql syntax when port default

    I'm surprised this one didn't work for you; it works fine for me:

    OSQL -Usqluser -Ppassword -Sip

    You shouldn't need the port.

    Can you ping the IP?

     

  • RE: Is Replication the answer

    Let's assume all you need is a test area, with current database structures and a reasonably fresh data snapshot.  If this assumption is wrong -- if you need up to the minute...

Viewing 15 posts - 106 through 120 (of 241 total)