Forum Replies Created

Viewing 15 posts - 3,436 through 3,450 (of 7,429 total)

  • RE: Dynamic query

    In this situation what does @query represent (actual example please) and what are you hoping for @Result to return?

  • RE: converting int format to datetimevformat

    Can you provide an example of the value of

    date_doc

    and

    date_entered

    so we can understand what is going on there?

    Also, what do those values represent? (Ex. number of sec. since 1/1/1900 12:00 AM)

    ...

  • RE: Generate Next Key from Stored Procedure

    You cannot, unfortunately, lock the SP from running in limited fashion. That is the reason for transactions and locking to prevent access until freed.

  • RE: using a varible in an insert operation

    Actually I have never heard of a variable referenced like so. A variable is a logically defined struture that lives only in the current context. If you made a column...

  • RE: entering null value

    Open the table in EM with return all rows. Find the record you want, place the cursor in the proper column for that row and press CTRL+0 which will update...

  • RE: View names only

    xtype = 'v' returns viws only. You are seeing table names too?

    Now it will show INFORMATION_SCHEMA views as well and to prevent those just do

    where xtype = 'v' and status...

  • RE: Who is to Blame for the SQL Slammer Virus?

    The only problem I have with not blaming MS is it is their code. Sure the Admins, DBAs and networking folks could have taken proper steps to prevent/limit the issue....

  • RE: Use of functions Do or Don't

    Unless I am wrong, I would not personally suggest doing so unless you need the function inline or have special needs for it. However after going thru the documentation in...

  • RE: ADO Parameters or Stored Procedure

    Maybe, maybe not. If you have an unlimited number of where options or extremely high number anyway it may be better to use dynamic SQL. You still have some control...

  • RE: Use of functions Do or Don't

    Keep in mind that a function is inline processing of every row with it's set of functionality. Depednin on what you are doing and how many rows are processed it...

  • RE: DBA Career

    Keep in mind that even though the market for Oracle may look good it does have a lot of requirements to work under that are different from SQL so you...

  • RE: Temp Tables

    Usign SELECT...INTO has known issues with locking. You should try to write so temp table is created with CREATE TABLE and use INSERT.

  • RE: Why is the Forum so slow

    Speaking of hardware, what is coming in and how are things going to be expanded? I am just curious.

  • RE: SET XACT_ABORT OFF not working properly (bug?)

    Just to clear things up a bit now that my brain is working. The three stages of SQL code during it's life cycle are these

    Parse Time -- Syntax validation only.

    Compile...

  • RE: varchar truncation to 255 symbols

    Can you post the relavent C++ I just cannot picuture the code as I have not used these options before.

Viewing 15 posts - 3,436 through 3,450 (of 7,429 total)