Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: Two Questions Please
Hi Fahd
fahd mirza wrote:
>Hi Listers,
> I have two questions please.
>1. I am using Oracle 8.1.6, how could I change the password of Internal?
>
Use orapwd utility:
orapwd file=<password filename i.e. d:\oracle\ora9i\dbs\oradb.pwd> password=<your new password i.e. change_on_install> entries=<number of max_users i.e.10>
Make sure that your init.ora remote_login_passwordfile is set to either SHARED or EXCLUSIVE. Confirm that the user is listed in the password file.
SQL> select * from v$pwfile_users;
>2. How can I move the data of a table from Oracle to Excel? Does Oracle provide any tool for this like it provides SQL Loader to do otherwise?
>
One way is to use sql script to extract the data into csv file
spool file.out
select col1 || ',' || col2 from tab1 where ....;
spool off
your delimiter can be anything (we use '~')
Other way is to use ODBC and create MS Query to query the data directly and load it straight into the Excel..
HTH Kind regards
Kresimir Fabijanic
-- Archives are at http://www.freelists.org/archives/oracle-l/ FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html -----------------------------------------------------------------Received on Fri Jul 09 2004 - 19:45:08 CDT
![]() |
![]() |