Sunday, 1 February 2015

Oracle d2k Installation



How To Install D2K(Developer Two Thousand) or Forms & Report In Your System
Requirement

OS window xp

(on 7 or 8 it will also install but some features not working properly so prefer xp or use vmware)
Developer 6i (download it from here: developer6i)
Oracle database(pre installed)

After download of developer 6i, Install developer 6i in your system

if you want to install it on Window7 or Window8 then change the compatibility mode to xp.

Installation Steps

Download the Developer 6i from above link and extract it. extracted size will be 614 or 621 MB.
Its very good choice if you install it in window xp or you can install it on 7 or 8 also but some features will not work properly in 7 or 8.

open the extracted folder developer 6i


forms 6i installation-0

If you are lucky then it will open the setup otherwise it will give error like the following window and set up will close

forms 6i installation error-1
Don't worry we have solution for this just navigate to install folder in developer 6i and search setup.exe
forms 6i installation error solution-2

If everything goes well it will open the beautiful oracle developer 6i setup wizard

forms 6i installation setup wizard-3
Here write the company name whatever you want and then press ok if everything goes well then it will move to next step. If it has some naming conflict or already in that location oracle product is installed like oracle database then it will give error like that.
forms 6i installation setup wizard error-4
For that just change the name like forms or something you like and then create one separate folder forms or anything whatever you like and click on location and choose the created folder location like that.
forms 6i installation setup wizard error solution-5

Then press OK it will move on next window like this
forms 6i installation setup wizard-6

Tuesday, 27 January 2015

Create User

SQL*Plus: Release 10.1.0.2.0 - Production on Fri Jan 31 20:01:48 2014

Copyright (c) 1982, 2004, Oracle.  All rights reserved.

Connected to:
Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Production
With the Partitioning, OLAP and Data Mining options

connect system/nip@nip

drop user nip cascade;

create user nip identified by "nip";

grant dba to nip;

connect nip/nip@nip

$imp nip/nip@nip file = 'd:\11i\last_export.dmp' log = 'c:\new_install_error.txt' full=y;

select * from tab;