This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title>Bootstrap Example</title> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"> | |
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.slim.min.js"></script> | |
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"></script> | |
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DROP PROCEDURE IF EXISTS vtigercrm540.hierarquia; | |
CREATE PROCEDURE vtigercrm540.hierarquia() | |
BEGIN | |
DECLARE v_finished INTEGER DEFAULT 0; | |
DECLARE v_filho int; | |
DECLARE v_pai int; | |
DEClARE cur CURSOR FOR | |
select |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT s.username, s.program, s.logon_time, s.osuser, s.machine | |
FROM v$session s, v$process p, sys.v_$sess_io si | |
WHERE s.paddr = p.addr(+) | |
AND si.sid(+) = s.sid | |
AND s.username = 'SYSPDVWEB_LANCEUNICO_TEST'; |