Link to home
Create AccountLog in
Oracle Database

Oracle Database

--

Questions

--

Followers

Top Experts

Avatar of matrix0511
matrix0511

How to Check Database Schemas in Oracle Database on Linux Server?
I'm not a Unix expert, but we have installed an Oracle DB on Linux server. we ran a script that created a lot of oracle schemas inside a database called: demo.

I am logged on to that database server and using Sqlplus to login as SYSTEM.

I would like to be able to view all the schemas that were created and also to be able to change the password for some of them.

could you please provide some commands on how I can do this type of DB admin tasks direclty from the sqlplus command line?

Thanks.

Zero AI Policy

We believe in human intelligence. Our moderation policy strictly prohibits the use of LLM content in our Q&A threads.


Avatar of woolmilkporcwoolmilkporc🇩🇪

Check with

select * from dba_users;

Alter the password with

alter user schema identified by new_password;

Wmp

One you can use Oracle Enterprise Manager

Or from sqlplus using this command select distinct owner from dba_objects;

Instead of 'select *':  select username

Reward 1Reward 2Reward 3Reward 4Reward 5Reward 6

EARN REWARDS FOR ASKING, ANSWERING, AND MORE.

Earn free swag for participating on the platform.


I'm no Oracle expert either, but try these:

SELECT username FROM all_users ORDER BY username;

alter user <user_name> identified by <new_password>;

Avatar of matrix0511matrix0511

ASKER

Guys, How can I use Oracle Enterprise Manager? I think that the GUI of using Oracle Enterprise Manager would be best.

I have the Oracle client intalled with admin stools but i don't see Oracle Enterprise Manager. Can someone help me with access to OEM?

Thanks

>>Can someone help me with access to OEM?

OEM is now browser based as of 10g.  The 9i OEM fat Java version still works against a 10g database.  After that:  Either dbConsole inside the database itself or Grid Control for managing multiple instances.   Either way:  Browser based.

>>I think that the GUI of using Oracle Enterprise Manager would be best.

Opinion.  I prefer sqlplus and a simple select statement.  But, that is just me.  Besides, OEM doesn't offer a SQL worksheet like SQL Developer, if you like GUIs.

Free T-shirt

Get a FREE t-shirt when you ask your first question.

We believe in human intelligence. Our moderation policy strictly prohibits the use of LLM content in our Q&A threads.


Last thing Guys, whats the SQL command to search for ALL tablespaces in the Oracle DB?

>>whats the SQL command to search for ALL tablespaces in the Oracle DB?

This is a different question.

All the data dictionalry views are in the docs:
select tablespace_name from dba_tablespaces;


Keep this SQL handy:
select view_name from dba_views where view_name like upper('%&view_to_find%') order by 1
/


I call it: find_view.sql

When you execute it and prompted, just enter a partial word like tablespace and it will show you ALL the views that are like that term.

99% of the time a view will pop up and it will be obvious what one you need.

Reward 1Reward 2Reward 3Reward 4Reward 5Reward 6

EARN REWARDS FOR ASKING, ANSWERING, AND MORE.

Earn free swag for participating on the platform.


@slightwv,

With the SQL you provided: select view_name from dba_views where view_name like upper('%&view_to_find%') order by 1

Are you suggesting that I take that one line and paste it in Notepad and save it as...  .SQL file? then upload it to my Oracle DB Linux server  location?

If so, how would I run that script from the Linux server? Not sure how to execute sql scripts on Oracle Linux server.

I just need more detailed steps. Thanks

>>then upload it to my Oracle DB Linux server  location?

Save it where ever you run sqlplus from.  To execute the script from sqlplus:
SQL>@find_view

by default sqplplus looks for scripts in the folder you execute sqlplus from.  If you save it to another folder:
SQL> @/some/path/find_view

Ok. I just copied your SQL and pasted it into my Sqlplus session. See results below. It still doesn't list all of my tablespaces. Did I not enter the correct info? when it prompted me I entered: tablespace.

But I know I have tablespaces called: PRODDTAT, PRODDTAI, TESTDTAT, TESTDTAI, etc, etc.

Free T-shirt

Get a FREE t-shirt when you ask your first question.

We believe in human intelligence. Our moderation policy strictly prohibits the use of LLM content in our Q&A threads.


ASKER CERTIFIED SOLUTION
Avatar of slightwv (䄆 Netminder)slightwv (䄆 Netminder)

Link to home
membership
Log in or create a free account to see answer.
Signing up is free and takes 30 seconds. No credit card required.
Create Account

That shows you the views within the system this is not showing you the tablespaces.

this will show you the view for tablespaces:

select tablespace_name from dba_tablespaces;

dariusg,

I already posted that exact query in http:#a37827849

The rest of the SQL was for future help in finding the correct view.

Please read all previous posts before posting.

Reward 1Reward 2Reward 3Reward 4Reward 5Reward 6

EARN REWARDS FOR ASKING, ANSWERING, AND MORE.

Earn free swag for participating on the platform.


slightwv,

I was explaining to him what you put. I wasn't trying to post the same thing over again.

"this will show you the view for tablespaces:" comes across as posting duplicate information not explaining a previous post without a reference to a previous post.

I got it guys. Thanks for explaining all this Slightwv. I appreciate it.

Free T-shirt

Get a FREE t-shirt when you ask your first question.

We believe in human intelligence. Our moderation policy strictly prohibits the use of LLM content in our Q&A threads.


@slightwv

As you can see the first part of the second sentence was cut off which was pointing back to your post.

Look I have been an expert for a while on EE check my credentials.

Thanks!
Oracle Database

Oracle Database

--

Questions

--

Followers

Top Experts

Oracle is an object-relational database management system. It supports a large number of languages and application development frameworks. Its primary languages are SQL, PL/SQL and Java, but it also includes support for C and C++. Oracle also has its own enterprise modules and application server software.