Install IBM Netezza and create a database - database configuration/design tasks
If you are tasked with installing and configuring the database, here is a list of steps to be taken:
IBM NetezzaInstallation (Runtime Configuration) | Parent topic: Installation (Runtime Configuration) |
If you are tasked with installing and configuring the database, here is a list of steps to be taken:
$ nzsql -h hostname system username password
CREATE DATABASE mydatabase
CHAR/VARCHAR
types will be latin9.
Unicode/UTF-8 character string data must be stored in NCHAR/NVARCHAR
columns.CREATE USER myadmin WITH PASSWORD 'password' ...
GRANT ALL PRIVILEGES on mydatabase TO myadmin;
GRANT ALL ADMIN TO myadmin;