Skip to content

Commit 0c2b951

Browse files
authored
Initialize SEQUENCE.
1 parent db4ed19 commit 0c2b951

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

articles/aks/howto-deploy-java-wls-app.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,7 @@ The other values in the outputs are beyond the scope of this article, but are ex
143143
```sql
144144
CREATE TABLE COFFEE (ID NUMERIC(19) NOT NULL, NAME VARCHAR(255) NULL, PRICE FLOAT(32) NULL, PRIMARY KEY (ID));
145145
CREATE TABLE SEQUENCE (SEQ_NAME VARCHAR(50) NOT NULL, SEQ_COUNT NUMERIC(28) NULL, PRIMARY KEY (SEQ_NAME));
146+
INSERT INTO SEQUENCE VALUES ('SEQ_GEN',0);
146147
```
147148

148149
After a successful run, you should see the message **Query succeeded: Affected rows: 0**. If you don't see this message, troubleshoot and resolve the problem before proceeding.

0 commit comments

Comments
 (0)