Difference between revisions of "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
Jump to navigation Jump to search
(history and sql updates)
m (moved VbzCart/queries/qryCache Flow Queries to VbzCart/queries/qryCache Flow Procs: going back to "procs" instead of "queries")
(No difference)

Revision as of 22:23, 13 November 2010

About

  • Purpose: compiles caching data for quicker processing
  • Requires: cache_flow, cache_queries
  • Used by: cache manager
  • History:
    • 2010-11-09 Renamed tables, so had to fix this query; renamed from v_data_flow to qryCache_Flow_Queries

SQL

<mysql>CREATE OR REPLACE VIEW qryCache_Flow_Queries 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>