Query to find service name
This article explains the steps to find the service name of a database running on your local windows machine. Open …
Query to find the queries executed by an user in Oracle
SELECT VS.USERNAME
, VS.MACHINE
, VS.PROGRAM
, VS.STATUS
, VST.SQL_ID
, VST.PIECE
, VST.SQL_TEXT
FROM V$SESSION VS
,V$SQLTEXT VST WHERE VS.SQL_ID = VST.SQL_ID AND VS.USERNAME = 'USER' ORDER BY VST.SQL_ID
,VST.PIECE;
This article explains the steps to find the service name of a database running on your local windows machine. Open …
Overview There are multiple ways to replicate data from an Amazon RDS instance to your preferred analytics platform. An …