|
-
Feb 6th, 2008, 07:29 AM
#1
Thread Starter
Frenzied Member
-
Feb 6th, 2008, 08:29 AM
#2
Re: Deploying Oracle Database with VB
What is the real question here? Is the oracle database server already running? Are you going to install the database schema onto that current database? Is the client softwatre (SQL*Net) already installed on all the clients? Do you have a user allready installed? Is the database instance already running on the Server?
Sometimes the Programmer
Sometimes the DBA
Mazz1
-
Feb 7th, 2008, 12:07 AM
#3
Thread Starter
Frenzied Member
Re: Deploying Oracle Database with VB
Thanks for the response Gary
1. There is Oracle SW (client/ otherwise) intalled in the client machine
2. Oracle 9i is now available only in the developing environment
3. We are trying to get the db/tables installed in client and run it.
-
Feb 7th, 2008, 08:23 AM
#4
Re: Deploying Oracle Database with VB
The tables are created on the database server not the client machine. This can be accomplished by as follows:
1. Creating a create database script to run on the server. Run all the create scripts to create the objects in the database (table,index,PK,FK, ...)
2. Take an export of the data from a current system (exp) and import on to the new server.
If you take route 2 you still need to create the database on the target server.
Sometimes the Programmer
Sometimes the DBA
Mazz1
-
Feb 8th, 2008, 04:57 AM
#5
Thread Starter
Frenzied Member
Re: Deploying Oracle Database with VB
tables are created on the database server not the client machine
could you elaborate a little, so that I could give a better feedback
-
Feb 8th, 2008, 08:21 AM
#6
Re: Deploying Oracle Database with VB
I think it is pretty clear. The database resides in an Oracle Instance on an Oracle database server. That machine is not normally the client machine (unless this is going to be used on a personnel machine).
Sometimes the Programmer
Sometimes the DBA
Mazz1
-
Feb 8th, 2008, 08:40 AM
#7
Thread Starter
Frenzied Member
Re: Deploying Oracle Database with VB
This is going to be used on a personal machine
-
Feb 8th, 2008, 08:46 AM
#8
Re: Deploying Oracle Database with VB
In that case it is easier. Just run your scripts to build the database instance on the machine, then either import an exsisting dump or run the scripts to build the database objects (tables,Indexes...)
Sometimes the Programmer
Sometimes the DBA
Mazz1
-
Feb 8th, 2008, 11:42 PM
#9
Thread Starter
Frenzied Member
Re: Deploying Oracle Database with VB
In that case it is easier
Thanks for being positive.
Just run your scripts to build the database instance on the machine
would not this again require Oracle to be installed in the client machine? If Iam not mistaken the so called scripts to create db/tables etc is for Oracle environment. Sorry if Iam sounding childish b'coz Iam one
To put it simply, while deploying an access db we donot require access to be running in client machine. In fact we do not require any office appln in their system. We want to duplicate this.
-
Feb 9th, 2008, 12:59 PM
#10
Re: Deploying Oracle Database with VB
Actually for Access you do need software (Jet) to be installed.. the difference is that there is a version of it included with Windows, so you don't 'need' to deploy it yourself (but to be safe, you should).
For other database systems, you will need to install the relevant software (Oracle Express?) as well as your program.
-
Feb 9th, 2008, 03:00 PM
#11
Re: Deploying Oracle Database with VB
If you want to use Oracle on the client machine you must install Oracle database server on that machine. This can be the Oracle XE edition which is free to use, but it absolutely needs to be installed on the computer that will run the database.
Sometimes the Programmer
Sometimes the DBA
Mazz1
-
Feb 12th, 2008, 04:41 AM
#12
Thread Starter
Frenzied Member
Re: Deploying Oracle Database with VB
 Originally Posted by GaryMazzone
If you want to use Oracle on the client machine you must install Oracle database server on that machine. This can be the Oracle XE edition which is free to use, but it absolutely needs to be installed on the computer that will run the database.
Are you saying:
1. I add the software oracle XE in my distribution CD
2.force the client to first install the same in his machine,
3.then somehow run the scripts (to create user,tables etc),
3.find the location of the database and set the connection properties accordingly.
-
Feb 12th, 2008, 08:39 AM
#13
Re: Deploying Oracle Database with VB
1 Yes.
2. Most definately
3. Yes this can be scripted in SQL command file. You will create the database, create the user, run the scripts to build the database objects.
4. Since this is Oracle XE (and I assume here that it will be the only Oracle instance on the machine) you just call the localhost and nothing else. Since it is the only instance on the machine the app will connect to it. You can not connect to it from other machines.
Sometimes the Programmer
Sometimes the DBA
Mazz1
-
Feb 13th, 2008, 12:26 AM
#14
Thread Starter
Frenzied Member
Re: Deploying Oracle Database with VB
you just call the localhost and nothing else
call how??? sorry pls bear with me
-
Feb 13th, 2008, 08:42 AM
#15
Re: Deploying Oracle Database with VB
Do you have any experience using Oracle and SQL Plus (both the command line and Windows versions)?
have you ever created a database from the command line? Are you a DBA (or have DBA experience), if not this will not be an easy task for you. You would need a DBA to write the code to create the database and bring it on line. Including making and starting the required services.
Last edited by GaryMazzone; Feb 13th, 2008 at 08:46 AM.
Sometimes the Programmer
Sometimes the DBA
Mazz1
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|