VbzCart/queries/qryCache Flow Procs

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
< VbzCart‎ | queries
Revision as of 19:27, 9 November 2010 by Woozle (talk | contribs) (moved VbzCart/queries/v data flow to VbzCart/queries/qryCache Flow Queries: using more canonical naming convention)
Jump to navigation Jump to search

About

  • Purpose: compiles caching data for quicker processing
  • Requires: cache_flow, cache_queries
  • Used by: store page display routines (need to be more specific...)
  • History:
    • 2010-11-09 Renamed tables, so had to fix this query

SQL

<mysql>CREATE OR REPLACE VIEW v_data_flow AS

 SELECT
   df.ID_Srce,
   df.ID_Dest,
   df.ID_Proc,
   dfx.doesClear
 FROM cache_flow AS df LEFT JOIN cache_queries AS dfx ON df.ID_Proc=dfx.ID
 ORDER BY dfx.doesClear;</mysql>