If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > DB2 > create database with db2 cli

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 06-04-04, 04:18
carmenlei carmenlei is offline
Registered User
 
Join Date: Jun 2004
Posts: 24
create database with db2 cli

I am writing a program with db2 cli in order to access db2 database. It can support operations such as insert, delete... but except create database. I can't use the SQLExecDirect() function when it didn't connect to the database. If connected, it can't create a new database when it is connected to an exist database. What should I do? Is it possible for me to do that? Thanks very much!
Reply With Quote
  #2 (permalink)  
Old 06-04-04, 04:23
sathyaram_s sathyaram_s is offline
Super Moderator
 
Join Date: Aug 2001
Location: UK
Posts: 4,534
The reason you are not able to create a database using SQLExecDirect() is because CREATE DATABASE is a command and not a SQL Statement ...

You should be able to invoke the Create database as a OS command (db2 create database ..... ) after attaching to the instance ...

HTH

Sathyaram
__________________
Visit the new-look IDUG Website , register to gain access to the excellent content.
Reply With Quote
  #3 (permalink)  
Old 06-04-04, 05:30
carmenlei carmenlei is offline
Registered User
 
Join Date: Jun 2004
Posts: 24
Quote:
Originally Posted by sathyaram_s
The reason you are not able to create a database using SQLExecDirect() is because CREATE DATABASE is a command and not a SQL Statement ...

You should be able to invoke the Create database as a OS command (db2 create database ..... ) after attaching to the instance ...

HTH

Sathyaram
I can use CREATE DATABASE in the command line processor, but how did I create database by my program. I am a beginner and can you mention it in details? Thanks very much~~
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On