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. commgraf

    Conditional CREATE VIEW/ DROP VIEW

    Following is my syntax: CREATE PROCEDURE create_vw_XT_if_not_exist() AS BEGIN IF( EXISTS (SELECT X$View.Xv$Name FROM X$View WHERE X$View.Xv$Name = 'VW_XT') ) THEN DROP VIEW VW_XT; END IF; CREATE VIEW VW_XT(id,kod) AS SELECT XT.id, XT.kod FROM XT; END; My problem...
  2. commgraf

    Conditional CREATE VIEW/ DROP VIEW

    Hi All! I would like to make in the Stored Procedure conditional Create View (If not Exist), but it appears that in my Pervasive SQL (9.1) PCC IF statement doesn't work with DROP VIEW and CREATE VIEW commands. I can't find this kind of information in Pervasive SQL Reference Manual. May be...

Part and Inventory Search

Back
Top