What SQL query from v$session can you run to show how many
sessions are logged in as a particular user account?
Answers were Sorted based on User's Feedback
Answer / diksha
select count(*) from v$session where username like ''
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / kishore
select count(*),username from v$session where group by username;
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / braj123
select count(*) from v$session where user_name="**";
Is This Answer Correct ? | 1 Yes | 2 No |
How would you best determine why your MVIEW couldn't FAST REFRESH?
how does an oracle clusterware manage crs resources?
A table is classified as a parent table and you want to drop and re-create it. How would you do this without affecting the children tables?
What are the different ways of moving data or databases between servers and databases in SQL Server?
Explain the difference between a hot backup and a cold backup and the benefits associated with each?
What are the different types of upgrades that can be performed in sql server? : sql server DBA
Which dictionary view(s) would you first look at to understand or get a high-level idea of a given Advanced Replication environment?
How would you force a log switch?
how to copy(migrate) the database one server to another server without using expdp/impdp how it is possible.
How to determine the service pack currently installed on SQL Server?
What are the high-availability solutions in sql server and differentiate them briefly? : sql server DBA
what do you understand by flashback feature of oracle?