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
https://www.jonathanmarquez.com | |
https://www.celiagm.es | |
https://ernestovazquez.es | |
https://franmadu6.github.io | |
https://franjavimn.onrender.com | |
https://sysadblog.onrender.com | |
https://jpcarmona.github.io | |
https://adrianjimenezb.wordpress.com |
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
-- MySQL equivalent of Oracle SCOTT default schema. | |
-- (datatypes are different but should generally be equivalent) | |
-- | |
-- Oracle database installations reportedly have included a default | |
-- schema called SCOTT, accessed by user "scott" with password "tiger". | |
-- Wikipedia reports the SCOTT schema originated with Bruce Scott, one | |
-- of the first employees at Oracle (then Software Development | |
-- Laboratories), who had a cat named Tiger. | |
-- | |
-- (1) Wikipedia contributors, "Oracle Database," Wikipedia, The Free |
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
ROLE | |
-------------------------------------------------------------------------------------------------------------------------------- | |
CONNECT | |
RESOURCE | |
DBA | |
PDB_DBA | |
AUDIT_ADMIN | |
AUDIT_VIEWER | |
SELECT_CATALOG_ROLE | |
EXECUTE_CATALOG_ROLE |
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
CREATE TABLE ALUMNOS | |
( | |
DNI VARCHAR2(10) NOT NULL, | |
APENOM VARCHAR2(36), | |
DIREC VARCHAR2(30), | |
POBLA VARCHAR2(15), | |
TELEF VARCHAR2(10) | |
); | |
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
create table caballosCarreras | |
( | |
codigoCaballo integer, | |
peso numeric(6,2), | |
nacionalidad varchar(30), | |
constraint pk_caballosCarreras primary key(codigoCaballo) | |
); | |
create table instalacionesCuadras |
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
create table caballosCarreras | |
( | |
codigoCaballo number(3), | |
peso number(6,2), | |
nacionalidad varchar2(30), | |
constraint pk_caballosCarreras primary key(codigoCaballo) | |
); | |
create table instalacionesCuadras | |
( |
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
El usuario recibido ha sido: SYS | |
Sus privilegios de sistema son: | |
ALTER ANY ANALYTIC VIEW | |
DROP ANY HIERARCHY | |
LOGMINING | |
DROP LOCKDOWN PROFILE | |
INHERIT ANY PRIVILEGES | |
CREATE ANY MEASURE FOLDER | |
DROP ANY CUBE |
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
SET TERMOUT OFF | |
SET ECHO OFF | |
GRANT CONNECT,RESOURCE,UNLIMITED TABLESPACE TO SCOTT IDENTIFIED BY tiger; | |
ALTER USER SCOTT DEFAULT TABLESPACE USERS; | |
ALTER USER SCOTT TEMPORARY TABLESPACE TEMP; | |
CONNECT SCOTT/tiger | |
DROP TABLE DEPT; | |
CREATE TABLE DEPT | |
(DEPTNO NUMBER(2) CONSTRAINT PK_DEPT PRIMARY KEY, |
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
time make -j 12 bindeb-pkg && ( speaker-test -t sine -f 500 )& pid=$! ; sleep 1s ; kill -9 $pid |
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
for i in $(virsh -c qemu:///system list --all | awk "{print \$2}" | tail -n +3); do echo "Discos de $i:\n\n$(virsh -c qemu:///system domblklist $i)\n"; done |
NewerOlder