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
atlas@olympus ~/script-virtualizacion main ./script.sh | |
+------------------------------------------+ | |
| Sun 6 Nov 22:32:13 CET 2022 | | |
| 💀💀💀💀 | | |
| 👽👽👽 Script de Adrián Jaramillo 👽👽👽 | | |
+------------------------------------------+ | |
+------------------------------------------+ | |
| Sun 6 Nov 22:32:15 CET 2022 | | |
| 💀💀💀💀 | | |
| Creando volumen ligero maquina1.qcow2 | |
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
atlas@olympus ~/script-virtualizacion main ./script.sh | |
+------------------------------------------+ | |
| Sun 6 Nov 23:08:58 CET 2022 | | |
| 💀💀💀💀 | | |
| 👽👽👽 Script de Adrián Jaramillo 👽👽👽 | | |
+------------------------------------------+ | |
+------------------------------------------+ | |
| Sun 6 Nov 23:09:00 CET 2022 | | |
| 💀💀💀💀 | | |
| Ya existe el volumen maquina1.qcow2 | |
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 |
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
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
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
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
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 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
ROLE | |
-------------------------------------------------------------------------------------------------------------------------------- | |
CONNECT | |
RESOURCE | |
DBA | |
PDB_DBA | |
AUDIT_ADMIN | |
AUDIT_VIEWER | |
SELECT_CATALOG_ROLE | |
EXECUTE_CATALOG_ROLE |