17 lines
472 B
SQL
17 lines
472 B
SQL
-- View: public.vw_bi_dim_product
|
|
|
|
-- DROP VIEW public.vw_bi_dim_product;
|
|
|
|
CREATE OR REPLACE VIEW public.vw_bi_dim_product AS
|
|
SELECT "intProductId",
|
|
"strProductCode" AS "Product Code",
|
|
"strProductDescription" AS "Description",
|
|
"ysnActive" AS "Is Active",
|
|
"strTemplate" AS "Template",
|
|
"strTemplateCode" AS "Template Code",
|
|
"strDefaultUom" AS "Default Uom"
|
|
FROM vw_utility_product pr;
|
|
|
|
ALTER TABLE public.vw_bi_dim_product
|
|
OWNER TO postgres;
|