File: drop_schema.sql

package info (click to toggle)
sqlfluff 3.5.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 34,000 kB
  • sloc: python: 106,131; sql: 34,188; makefile: 52; sh: 8
file content (4 lines) | stat: -rw-r--r-- 176 bytes parent folder | download | duplicates (2)
1
2
3
4
DROP SCHEMA example_dataset;
DROP SCHEMA IF EXISTS example_project.example_dataset;
UNDROP SCHEMA example_dataset;
UNDROP SCHEMA IF NOT EXISTS example_project.example_dataset;