오라클에서 v$sqltext 뷰 테이블을 조회화면...
클라이언트에 요청한 쿼리가 오라클 메모리에 올라와 있는 것을 확인 할 수 있는데요...
이처럼, 사이베이스도 클라이언트가 요청한 쿼리를 어떻게 확인 하는지요 ?
dbcc traceon(3604)
go
dbcc sqltext(spid)
답변 대로... 실행을 해 봤더니...
Server Message: Number 10353, Severity 14You must have the following role(s) to execute this command/procedure: 'sybase_ts_role' . Please contact a user with the appropriate role for help.
이런 메시지가 떠요...
DBA 권한으로 해야 되나 봐요 ;;
grant role sybase_ts_role to sa
set role sybase_ts_role on
하시고 해보세요