About 1,808,281 results (3,888 milliseconds)

How to tell if a given temporary table exists in the current session?

https://groups.google.com/g/comp.databases.informix/c/6nne-m0YyWc
Jan 29, 2010 ... I have a need to detect and drop temporary tables from SQL if they exist in my session. It's the standard. IF EXISTS temp_table_x THEN DROP ...

Strange behavior with MySQL and UNIQUE (#7789)

https://groups.google.com/g/django-developers/c/aynZ_4Fut2E
DROP TABLE tempfoobar; ... First, what about tables that Django did not create (or created before the change was made)? ...

Managing partitioned tables | BigQuery | Google Cloud

https://cloud.google.com/bigquery/docs/managing-partitioned-tables
... all source tables must match the destination table's partition specification. ... To delete a partition in a partitioned table: Console SQL bq API More.

Use row-level security | BigQuery | Google Cloud

https://cloud.google.com/bigquery/docs/managing-row-level-security
Shows how to create, update, list, and delete a table's row-level access policies, and shows how to query a table with row-access policies in BigQuery.

Handling view dependencies in ALTER TABLE statements

https://groups.google.com/a/greenplum.org/g/gpdb-dev/c/_TpeAiFAcsw
Sep 5, 2016 ... with a table change, fixing all these in the space of a transaction in SQL ... When DBA want to change schema of physical table, DBA has to drop ...

rebuild-daily fails

https://groups.google.com/g/weewx-user/c/sM3LHKj5WJw
May 1, 2021 ... Proceeding will delete all your daily summaries from database 'weewx-gw1000. ... this is using the —drop-tables and —rename-tables options new to ...

Joomla 4 not accepting SQL in component.

https://groups.google.com/g/joomla-dev-general/c/LKZFToIREns
Feb 8, 2023 ... DROP TABLE IF EXISTS `#__shop_options` ;. CREATE TABLE IF NOT EXISTS ... I get the same error - and if I remove more SQL statements the error just ...

Modifying table schemas | BigQuery | Google Cloud

https://cloud.google.com/bigquery/docs/managing-table-schemas
The following example shows a SQL query that selects all the data from column_two and column_three in mydataset. ... You can delete a column from an existing ...

Manage datasets | BigQuery | Google Cloud

https://cloud.google.com/bigquery/docs/managing-datasets
This document describes how to copy datasets, recreate datasets in another location, secure datasets, delete datasets, restore tables from deleted datasets, ...

REFERENTIAL_INTEGRITY FALSE and creating tables

https://groups.google.com/g/h2-database/c/rrQmOzRbWgU
DROP TABLE IF EXISTS `test_3`;. CREATE TABLE `test_3` (. `id` bigint(20) NOT NULL,. PRIMARY KEY (`id`),. ) ;. DROP TABLE IF EXISTS `test_2`;. CREATE TABLE ` ...

Large project deletion

https://groups.google.com/g/xnat_discussion/c/m-d2OtGluuo
- drop the database and recreate it ( possibly by deleting all tables/views ) ... sql scripts are applied on the server ). So : 1- In the web interface, as ...

Reviewboard upgrade failure

https://groups.google.com/g/reviewboard-dev/c/Qbv2y18dL_g
continue. [!] Details: (1005, "Can't create table 'reviewboard_git.#sql- 331d_214215' (errno: 150)")

Data definition language (DDL) statements in GoogleSQL ...

https://cloud.google.com/bigquery/docs/reference/standard-sql/data-definition-language
The sum of bytes processed for all the columns referenced from the tables scanned by the query. CREATE VIEW, None. DROP TABLE, None. DROP VIEW, None.

Generate Comands to Create/Drop all Indexes in a Database

https://sites.google.com/site/chilledsql/welcome/tip_category_indexes/tip_detail_indexes_generatecreatedropindexcommands
SQL Server DBA/Developer Interview Questions · SQL Server Migration Toolkit ... Drop all Indexes currently in place in the database. NOTE: No changes are ...

How can i drop all tables (and ref. integ) in a database in one action

https://groups.google.com/g/comp.databases.sybase/c/2jIWmYO7KOE
This way won't delete them all in one fell swoop, but it's pretty quick. Use the following SQL to quickly generate a drop table script: select 'drop table', ...

getting service registry to load into jpa database

https://groups.google.com/a/apereo.org/g/cas-user/c/XTR3y4uwT50
Jul 14, 2017 ... ... dev sql box, create the necessary tables ... Hibernate: alter table RegisteredServiceImpl_Props drop constraint FK1xan7uamsa94y2451jgksjkj4

GoogleSQL data definition language | Spanner | Google Cloud

https://cloud.google.com/spanner/docs/reference/standard-sql/data-definition-language
Create, alter, or drop tables in a database. Add, alter, or drop columns in ... After you delete a model definition, all SQL queries referencing the deleted model ...

Manage tables | BigQuery | Google Cloud

https://cloud.google.com/bigquery/docs/managing-tables
Update table properties: Expiration time; Description; Schema definition; Labels; Default rounding mode. Rename (copy) a table; Copy a table; Delete a ...

Evolutions always drop down tables

https://groups.google.com/g/play-framework/c/eBQt3rSvSbw
... database structure in DEV mode without to drop all my tables? Thanks ... The best solution for me is to generate an sql file for every model update ...

Delete all rows in BigQuery and other DML statements to add ...

https://cloud.google.com/blog/topics/developers-practitioners/bigquery-explained-data-manipulation-dml
Nov 13, 2020 ... To avoid this, you can consider loading the new batch of data to a new table or a partition of a table. Consider Cloud SQL for OLTP use cases.