About 1,805,934 results (1,608 milliseconds)

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

https://cloud.google.com/bigquery/docs/reference/standard-sql/data-definition-language
table_option_list : A list of options for creating the table. query_statement : The query from which the table should be created. For the query syntax, see SQL ...

Create and use tables | BigQuery | Google Cloud

https://cloud.google.com/bigquery/docs/tables
Open the BigQuery page in the Google Cloud console. Go to the BigQuery page. In the Explorer panel, expand your project and select a dataset. Enter a valid SQL ...

Creating partitioned tables | BigQuery | Google Cloud

https://cloud.google.com/bigquery/docs/creating-partitioned-tables
Create a partitioned table from a query result · In SQL, use a CREATE TABLE ... AS SELECT statement. · Use the bq command-line tool or the BigQuery API to set a ...

batch script to create table and add a geometry column into a sqlite DB

https://groups.google.com/g/spatialite-users/c/iipKpneO42M
Paulo Eduardo Cardoso · 1. Create a .bat file with the code to create my sqlite database. @echo off. setlocal · 2. create a .sql file to build a table inside ...

Migrate work with create table but not work with inset sql

https://groups.google.com/g/cfwheels/c/T9LpGd7i9LE
Feb 14, 2022 ... Generally speaking, if you can create a table but not do an insert it's most likely a permission issue on the database user.. Blastiko's ...

Create table clones | BigQuery | Google Cloud

https://cloud.google.com/bigquery/docs/table-clones-create
Use GoogleSQL, the bq command-line tool, or the BigQuery API to create a table clone. SQL bq API More. To clone a table, use ...

Frustrations with the BDE

https://groups.google.com/g/borland.public.delphi.database.desktop/c/HCkX9w9JGsQ/m/BVFiiODhIacJ
... creating a table with the SQL CREATE TABLE...PRIMARY KEY clause. This means in effect that different (non-SQL) code has to be used to create primary keys on ...

Create Cloud Storage external tables | BigQuery | Google Cloud

https://cloud.google.com/bigquery/docs/external-data-cloud-storage
Running the CREATE EXTERNAL TABLE data definition language (DDL) statement. Using the client libraries. Select one of the following options: Console SQL More.

GoogleSQL data definition language | Spanner | Google Cloud

https://cloud.google.com/spanner/docs/reference/standard-sql/data-definition-language
Schema object names are case insensitive in SQL queries. As an example, consider the table MyTable2 created with the following statement. CREATE TABLE ...

Create and use clustered tables | BigQuery | Google Cloud

https://cloud.google.com/bigquery/docs/creating-clustered-tables
When you create a clustered table from a query result, you must use standard SQL. Currently, legacy SQL is not supported for querying clustered tables or ...

Derived tables in Looker | Google Cloud

https://cloud.google.com/looker/docs/derived-tables
The two versions of the LookML illustrate how you can create equivalent derived tables using either LookML or SQL to define the query for the derived table: The ...

Create tables | Dataform | Google Cloud

https://cloud.google.com/dataform/docs/create-tables
When you trigger execution, Dataform executes the SQL code and creates your defined tables in BigQuery. You can create the following table types in a type: " ...

MyISAM tables on Cloud SQL

https://groups.google.com/g/google-cloud-sql-discuss/c/4gtSxdtVE24
May 26, 2018 ... MySQL [test]> create table test (a int) engine=myISAM; ERROR 3161 (HY000): Storage engine MyISAM is disabled (Table creation is disallowed). And ...

Create table with data types | Spanner | Google Cloud

https://cloud.google.com/spanner/docs/samples/spanner-create-table-with-datatypes
To learn how to install and use the client library for Spanner, see Spanner client libraries. To authenticate to Spanner, set up Application Default Credentials ...

Create and manage databases | Cloud SQL for MySQL | Google Cloud

https://cloud.google.com/sql/docs/mysql/create-manage-databases
It contains tables that store information required by the MySQL server as it runs. performance_schema : A feature for monitoring MySQL Server execution at a low ...

Errors creating tables with bareos

https://groups.google.com/g/bareos-users/c/hvKLbWcHaG4
I decided to run the CREATE TABLE Job statement in MySQL in the bareos db and it did kick a invalid default value error for SchedTime. The mysql.sql file says:.

Create Table Problem (Upgrading from 1.4.x)

https://groups.google.com/g/h2-database/c/6g317W6DzGw
Aug 30, 2023 ... In the error message there is something about "expected "identifier"; SQL statement". If I take out or rename the "KEY" column everything works.

Problem with CREATE TABLE AS SELECT from linked Oracle tables ...

https://groups.google.com/g/h2-database/c/WqaDL6eLtvw
Jan 12, 2011 ... INSERT INTO A VALUES (2); -- 3. In H2, create a link to the table. sql> CREATE LINKED TABLE A ( null, 'jdbc: ...

Create a table | Dataform | Google Cloud

https://cloud.google.com/dataform/docs/define-table
To define a table, you define the table type and write a SELECT statement in a type: "table" SQLX file. Dataform then compiles your Dataform core code into SQL.

Temporary tables in memory using PL/SQL (as a workaround for not ...

https://groups.google.com/g/comp.databases.oracle.misc/c/XHp-hIjVi7g
Feb 13, 2008 ... Is there any way of creating temporary tables (in memory) using PL/SQL (Oracle 9i)? Then update values in those rows from those in-memory temp tables for re- ...