Skip to main content

DROP QUERY

Deletes a query.

Synopsis

DROP QUERY name [ FROM className ]

Arguments

Argument Description
name The name of the query to be deleted. The name is an identifier. Do not specify the query’s parameter parentheses. A name can be qualified (schema.name), or unqualified (name). An unqualified query name takes the system-wide default schema name, unless the FROM className clause is specified.
FROM className Optional — If specified, the FROM className clause deletes the query from the given class. If this clause is not specified, Caché searches all classes of the schema for the query, and deletes it. However, if no query of this name is found, or more than one query of this name is found, an error code is returned. If the deletion of the query results in an empty class, DROP QUERY deletes the class as well.

Description

The DROP QUERY command deletes a query. When you drop a query, Caché revokes it from all users and roles to whom it has been granted and removes it from the database.

In order to drop a query, you must have %DROP_QUERY administrative privilege, as specified by the GRANT command. If you are attempting to delete a query for a class with a defined owner, you must be logged in as the owner of the class. Otherwise, the system generates an SQLCODE -99 error (Privilege Violation).

The following combinations of name and FROM className are supported. Note that the FROM clause specifies the class package name and query name, not the SQL names. In these examples, the system-wide default schema name is SQLUser, which corresponds to the User class package:

  • DROP QUERY BonusCalc FROM queryBonusCalc: drops the query SQLUser.BonusCalc().

  • DROP QUERY BonusCalc FROM User.queryBonusCalc: drops the query SQLUser.BonusCalc().

  • DROP QUERY Test.BonusCalc FROM queryBonusCalc: drops the query SQLUser.BonusCalc().

  • DROP QUERY BonusCalc FROM Employees.queryBonusCalc: drops the query Employees.BonusCalc().

  • DROP QUERY Test.BonusCalc FROM Employees.queryBonusCalc: drops the query Employees.BonusCalc().

If the specified query does not exist, DROP QUERY generates an SQLCODE -362 error. If the specified class does not exist, DROP QUERY generates an SQLCODE -360 error. If the specified query could refer to two or more queries, DROP QUERY generates an SQLCODE -361 error; you must specify a className to resolve this ambiguity.

Examples

The following embedded SQL example attempts to delete myq from the class User.Employee. (Refer to CREATE TABLE for an example that creates class User.Employee.)

   &sql(DROP QUERY myq FROM User.Employee)
  IF SQLCODE=0 {
    WRITE !,"Query deleted" }
  ELSEIF SQLCODE=-360 {
    WRITE !,"Nonexistent class: ",%msg }
  ELSEIF SQLCODE=-362 {
    WRITE !,"Nonexistent query: ",%msg }
  ELSE {WRITE !,"Unexpected Error code: ",SQLCODE}

See Also

FeedbackOpens in a new tab