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 gkittelson 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: *

  1. Barbaro

    Nested Query Problem (Not using Index)

    To clarify my idea: If i could use left joins i would, but that´s not the point!! Here I give the tables and the query. # Server version 4.1.0-alpha-log # # Table structure for table 'demandexam' # CREATE TABLE demandexam ( sku_code char(3) NOT NULL default '0', quantity tinyint(3)...
  2. Barbaro

    Nested Query Problem (Not using Index)

    Should it have relation?
  3. Barbaro

    Nested Query Problem (Not using Index)

    The relation is given by "table2.fieldb=table1.fieldb" select fielda, (select table2.fieldc from table2 where table2.fieldb=table1.fieldb) from table1
  4. Barbaro

    Nested Query Problem (Not using Index)

    MySQL 4.1 (It supports nested queries)
  5. Barbaro

    Nested Query Problem (Not using Index)

    Does anybody know why the explain of a query that contains a nested query shows that the "dependant" query does not use indexes when it should?? Does the query use indexes at all? ie: Table1 structure: fielda :Primary key fieldb Table2 structure: fieldb :Primary key fieldc select...
  6. Barbaro

    Can´t drop materialized view

    Keep getting ora -12003 mesagges. Syntax is ok .. Please help..
  7. Barbaro

    stringgrid synchronize in StringGrid

    Is there a way to sincronize to stringgrids when moving the scollbar of one of them?
  8. Barbaro

    Help Using a Correlated subquery in a Cursor

    Thanks DaPi, your answer gives a different resultset that mine does. My query returns nulls if the name is not found. Your query would return the names that exist in both tables. cursor ajm is select m.name, dt.dept from master m, depttable dt where dt.name(+)=m.name; With this modification...
  9. Barbaro

    Help Using a Correlated subquery in a Cursor

    Anybody knows why i cant compile a Procedure in pl/sql where i have a cursor like this: cursor ajm is select m.name,(select dt.dept from depttable dt where dt.name=m.name) from master m;

Part and Inventory Search

Back
Top