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 strongm 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: shahzadzafar
  • Order by date
  1. shahzadzafar

    Connect to database... problem

    You must logout from current user before changing the connection. Please try below code... IF (:Login_Blk.Txt_User IS NOT NULL AND :Login_Blk.Txt_Password IS NOT NULL) THEN logout; --To logout from current user before changing conn. LOGON...
  2. shahzadzafar

    getting o/s of browser through forms

    message(get_application_property(operating_system)); Returns the name of the operating system that is currently in use. Valid return values are MSWINDOWS, MSWINDOWS32, WIN32COMMON, UNIX, SunOS, MACINTOSH, VMS, and HP-UX. Regards Shahzad Zafar
  3. shahzadzafar

    wrong column showing up in field on report

    have u COMPILED and REGENERATE the report after the change u have made. Compile:- PROGRAM-->COMPILE-->ALL (ctl+shift+k) Generate:- FILE-->ADMINISTRATION-->COMPILE REPORT (ctl+T) Regards Shahzad Zafar
  4. shahzadzafar

    Looking for a date range, 6 months ago through today.

    hi rloiben, You can use this statement for six months before.... where date>add_months(sysdate,-6) .............it will be always accurate Regards Shahzad Zafar
  5. shahzadzafar

    How to get n Random records from a Table?

    hi, please try to use folloeing query..... select * from (select * from scott.emp order by dbms_random.random) where rownum<10 Regards Shahzad Zafar
  6. shahzadzafar

    Generating report to Excel Sheet from Report Builder

    hi adeel, adeel u can convert tabular form values into excel sheet by using UTL_FILE package.but by using this package u will use the cursor to put values into excel sheet. The following link is usable for u ..pl try... http://www.experts-exchange.com/Databases/Oracle/Q_20410995.html Thanx...
  7. shahzadzafar

    Updating from 2nd table when trigger updates table

    hi anniez, please use following update statment may be your problem will solve....... in case no please explain your question more and describe the structure of both tables ... update tab_a a set a.group=(select substr(b.grp_dept,1,3) from tab_b b where...
  8. shahzadzafar

    Oracle Application Server

    hi kido, You can convert your application from 6i to 9iAs easily... 1-Put all your fmx files in <orahome>\forms90 folder. 2-Compile all your forms in 9iAS. 3-run the form on browser. OR 1-put the path of your application in <orahome>\forms90\server\formsweb file change ---1...
  9. shahzadzafar

    Generating report to Excel Sheet from Report Builder

    hi avinashhegde, Simply set Parameter of report to FILE and named <filename>.HTML.,report will save in excell sheet instead of screen. Regards Shahzad Zafar
  10. shahzadzafar

    executing a procedure from within an anonymous pl/sql block

    hi jimmy, when u r calling a stored procedure in pl/sql block then there is no need of EXECUTE command ,it is used at that time when u execute a SP on sql propmt. Simply use..... begin test_procedure('param1','param2'); end; Thanks.. Regards Shahzad Zafar
  11. shahzadzafar

    text item set non-updateable but is updateable by sql code

    hi prosuc, You should query the required field from table before updation if it already contains value then update it with previous retrieved value else null means new value .u can add this code in your when_button_pressed trigger, suggested is to use this code in PRE_UPDATE trigger . This code...

Part and Inventory Search

Back
Top