public enum QueryStatementType
Type of the statement (e.g. SELECT, INSERT, CREATE_TABLE, CREATE_MODEL..)
Namespace
Google.Cloud.AuditAssembly
Google.Cloud.Audit.dll
Fields |
|
---|---|
Name | Description |
AlterMaterializedView |
ALTER MATERIALIZED_VIEW <view> |
AlterSchema |
ALTER SCHEMA <Schema> |
AlterTable |
ALTER TABLE <Table> |
AlterView |
ALTER VIEW <View> |
Assert |
ASSERT <condition> AS 'description' |
Call |
CALL <stored procedure> |
CreateExternalTable |
CREATE EXTERNAL TABLE <TABLE> |
CreateFunction |
CREATE FUNCTION <Function>(<Signature>) AS ... |
CreateMaterializedView |
CREATE MATERIALIZED VIEW <View> AS ... |
CreateModel |
CREATE MODEL <Model> AS <Query> |
CreateProcedure |
CREATE PROCEDURE <Procedure> |
CreateSchema |
CREATE SCHEMA <Schema> |
CreateTable |
CREATE TABLE <Table> <column list> |
CreateTableAsSelect |
CREATE TABLE <Table> AS SELECT |
CreateView |
CREATE VIEW <View> |
Delete |
DELETE <Table> ... |
DropExternalTable |
DROP EXTERNAL TABLE <Table> |
DropFunction |
DROP FUNCTION <Function> |
DropMaterializedView |
DROP MATERIALIZED VIEW <View> |
DropModel |
DROP MODEL <Model> |
DropProcedure |
DROP PROCEDURE <Procedure> |
DropSchema |
DROP SCHEMA <Schema> |
DropTable |
DROP TABLE <Table> |
DropView |
DROP VIEW <View> |
ExportData |
EXPORT DATA; |
Insert |
INSERT INTO <Table> .... |
Merge |
MERGE INTO <Table> .... |
Script |
Script |
Select |
SELECT ... FROM <Table list> ... |
TruncateTable |
TRUNCATE TABLE <Table> |
Unspecified |
Unknown. |
Update |
UPDATE <Table> SET ... |