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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by 13579

  1. 13579

    paging

    I have a Search field . When user enters a value in the Search field, I want to display the first 10 rows which match the query, then the next 10..and so on. but problem is i use cursor inside the select statement.because i use nested table. this is the query select t.empid,t.empname,cursor(...
  2. 13579

    paging

    I have a Search field . When user enters a value in the Search field, I want to display the first 10 rows which match the query, then the next 10..and so on. I will give How do I go about it?
  3. 13579

    can we use cursor inside the ref cursor

    i want to out the result as a ref cursor.can i include cursor in that ref cursor like the following procedure get_data(idea_cur out GenericCursorType) Is Begin open idea_cur for select t.deptid,t.deptname,cursor(select a.id,a.namefrom TABLE(t.emp) a) from dept t; End ;
  4. 13579

    Role of particular user?

    u can find the role of particular user using following two table sys.dba_users , sys.dba_sys_privs
  5. 13579

    Designer

    Thanks.But one of my friends says,u can generate table without having primary key or surrogate key.also can i stop those unneccessary sequences.
  6. 13579

    how to generate oracle sequence using Database Designer Transformer

    I created Entity Relationship Diagram.I can generate Table relavant to that every entity.(using Database Design Transformer).Normaly the Database Design Transformer tries to find a suitable unique key that can be used as the primary key. If it cannot find one, it creates a surrogate primary...
  7. 13579

    Designer

    How to generate table without primary key from Entity Relationship Diagram using Database Design Transformer

Part and Inventory Search

Back
Top