-
Notifications
You must be signed in to change notification settings - Fork 845
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DBZ-4999 fixing Informix tutorial example
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -477,8 +477,8 @@ docker-compose -f docker-compose-ifx.yaml exec kafka /kafka/bin/kafka-console-co | |
--property print.key=true \ | ||
--topic ifxserver.informix.customers | ||
# Modify records in the database via DB2 client | ||
docker-compose -f docker-compose-ifx.yaml exec ifxserver bash -c 'dbaccess informix -' | ||
# Modify records in the database via dbaccess client | ||
docker-compose -f docker-compose-ifx.yaml exec ifxserver bash -cl 'dbaccess sysuser -' | ||
INSERT INTO informix.customers(first_name, last_name, email) VALUES ('John', 'Doe', '[email protected]'); | ||
|