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 Mike Lewis 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: Saluk
  • Order by date
  1. Saluk

    linking a proc file- Urgent

    You have to link also the SQL-Library orasql9.lib into your program.
  2. Saluk

    Convert a date in a number

    Use Julian dates, see function TO_CHAR in SQL Reference documentation. Example: SELECT TO_NUMBER(TO_CHAR (hire_date, 'J')) FROM employees;
  3. Saluk

    Oracle trigger -> windows message queue

    MSMQ and ORACLE are totally different things. To create a Message in MSMQ you have to follow the instructions of the MSMQ Application Programmer Interface (API) help in the MSDN: Open the queue, create the message, send the message, close the queue. All this is done in your favorite language, C...

Part and Inventory Search

Back
Top