Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: bobby1977
  • Content: Threads
  • Order by date
  1. bobby1977

    Dynamic SQL

    Hi! To obtain a value using dynamic SQL, in Oracle I used EXECUTE IMMEDIATE 'SELECT name FROM emp WHERE empno = :no' INTO lcv_name USING lnv_empno where: lnv_empno variable with employee ID value lcv_name variable filled after statement execution with employee name In SQL Server i can execute...
  2. bobby1977

    working with binary data

    Hi ! I need to extract data from a binary type variable the way i can extract string data using SUBSTRING. In Oracle i used UTL_RAW package, but in SQL i don't know how to do this. Can anyone help me ? Thankx!
  3. bobby1977

    Maximum stored procedure nesting level exceeded

    I had to simulate a tree in SQL so a used a recursive procedure, but i receive an error message ( "Maximum stored procedure nesting level exceeded" ). What can i do to solve this situation? Does anyone know if i can remove the limits for recursive calls ? Thanx !
  4. bobby1977

    SQL Server error messages

    Hello, i'm working with T-SQL stored procedures and i am interested in obtaining the formated error message from sysmessages when a constraint violation occurs. i can obtain the error message using a select from sysmessages table based on the number of error i received through @@ERROR, but the...
  5. bobby1977

    SQL Server error messages

    Hello, i'm working with T-SQL stored procedures and i am interested in obtaining the formated error message from sysmessages when a constraint violation occurs. i can obtain the error message using a select from sysmessages table based on the number of error i received through @@ERROR, but the...
  6. bobby1977

    Creating tables -- values for storage clause params

    Could anyone tell me if there is a formula which i could use to give proper values ( in order to increase performance ) to parameters used in the "storage" clause from "create table" ? The params which I consider are: INITIAL, NEXT , MINEXTENTS, MAXEXTENTS, PCTINCREASE...
  7. bobby1977

    calling API functions from within my stored procedures

    Could anyone tell me what should i do to be able to call a function such as OutputDebugString( string ) from within my stored procedures ? Or maybe someone knows if I can use a tool such as DebugViewer to see messages sent from within my stored procedures at runtime ... Please help me! Tankx !

Part and Inventory Search

Back
Top