From the makers of Oracle SQL Developer, your new Oracle Database command line interface. Click the Website link for instant download of latest version.
Need to quickly load some data to a new or existing table? Take a look at the LOAD command!
Use the 'set load format' command to configure how your data is interpreted/mapped to your table.
Need to create a DDL and Data script for a table? It's as simple as using SPOOL, DDL, and /*INSERT*/ commands!
You can also 'shape' the DDL using the various SET DDL commands such as
SET DDL SCHEMA OFF
SET DDL TABLESPACE OFF
ALT SQL> cd c:\users\jdsmith
SQL> spool regions.sql
SQL> ddl regions
CREATE TABLE "HR"."REGIONS"
( "REGION_ID" NUMBER CONSTRAINT "REGION_ID_NN" NOT NULL ENABLE,
"REGION_NAME" VARCHAR2(25) COLLATE "USING_NLS_COMP"
) TABLESPACE "USERS" ;
CREATE UNIQUE INDEX "HR"."REG_ID_PK" ON "HR"."REGIONS" ("REGION_ID")
TABLESPACE "USERS" ;
ALTER TABLE "HR"."REGIONS" ADD CONSTRAINT "REG_ID_PK" PRIMARY KEY ("REGION_ID")
USING INDEX "HR"."REG_ID_PK" ENABLE;
SQL> select /*insert*/ * from regions;
REM INSERTING into REGIONS
SET DEFINE OFF;
Insert into REGIONS (REGION_ID,REGION_NAME) values (1,'Europe');
Insert into REGIONS (REGION_ID,REGION_NAME) values (2,'Americas');
Insert into REGIONS (REGION_ID,REGION_NAME) values (3,'Asia');
Insert into REGIONS (REGION_ID,REGION_NAME) values (4,'Middle East and Africa');
SQL> spool off
SQL>
We have a new 30minutes hands-on LiveLab tutorial for getting started in your CI/CD journey with @OracleAPEX and your app schemas data, programs, and @OracleREST REST APIs!
social.ora.cl/6017ugKD7
ALT SQLcl is a database change management tool that allows you to capture, version, and deploy database changes simply and in an automated fashion. This cuts back on manual work such as recreating tables, making sure database object change scripts are properly working, and rolling back unwanted alterations.
Make sure to join us next week at CloudWorld 2023 as SQLcl product manager @talke_tech takes you through the ins and outs of SQLcl & teaches you Liquibase for managing your Oracle DB App installs and upgrades
Talk: social.ora.cl/6012P45MQ
Lab: social.ora.cl/6013P45Mv
ALT Oracle SQLcl is a powerful command line interface for the Oracle Database.
So much SQLcl content at Cloud World 2023, don't miss it! LiveLabs, talks, and theater presentations - come meet our dev and product teams, and say hello!
Our PM Jeff Smith has put together a list of all of our Database Tools talks for your convenience
social.ora.cl/6012PQVpp
Did you know: You can use the LOAD command to generate table DDL for a given CSV file!
ALT Syntax: load <table_name> file.csv SHOW_DDL
This will let Oracle SQLcl read the contets of your CSV file and suggest an Oracle Database CREATE TABLE command to store the data.
Missed our LiveLab webinar with @talke_tech ? No worries, we recorded it!
social.ora.cl/6011Pw2FU
See the video description for links to the LiveLab and an open Slack Channel where you can interact with others learning how to version your schemas & our dev team!
Don't miss our event, tomorrow!
social.ora.cl/6011PpdWv
Learn all about how to get a handle on versioning your database schemas and code using SQLcl with our built-in and enhanced Liquibase support!
#oracle#cicd#database#developers
With #oracle SQLcl version 23.2 we are offering an exciting new feature! You can now save and re-use connections, from the command line!
Optionally save passwords, those passwords if saved, will be secured safely in local wallets.
Blog/Demo: social.ora.cl/6012PRqWo
Did you know we had a SQL and PL/SQL Formatter built into the command-line for Oracle Database?
Simply use the 'FORMAT' command to either format the code in your buffer or in a file. Here's a quick demonstration!
#oracle#sql#database#pretty#code#developers
Today's tip comes from one of our favorite @oracleace members, @evrocs_nl !
It's actually a series of posts showing how to build your own commands in SQLcl
evrocs.nl/when-great-just-isβ¦
Read, subscribe, and follow!
Need the DDL for a table, or maybe just the SQL under a VIEW?
Use the DDL command!
Want to 'shape' the generated code? Use SET DDL
#oracle#developer#sql
ALT The DDL command in Oracle SQLcl makes it easy to use the database package DBMS_METADATA to retrieve the code required to build your tables, views, and more. You can use 'set ddl' to configure how your DDL is generated.