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
license: mit |
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
license: mit |
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
use bd_test; | |
/* Clientes */ | |
insert into bd_test.cliente_FC (id_cliente,nombre,apellido,cedula,sexo,fecha_nacimiento) values (1002,'Fernando','Ortega','8-328-121','M','1976-01-10'); | |
insert into bd_test.cliente_FC (id_cliente,nombre,apellido,cedula,sexo,fecha_nacimiento) values (2002,'Julio','Castro','E-835-645','M','1981-12-05'); | |
insert into bd_test.cliente_FC (id_cliente,nombre,apellido,cedula,sexo,fecha_nacimiento) values (3002,'Maria','Gonzalez','E-821-1479','F','1981-12-06'); | |
/* Hobbies */ | |
insert into bd_test.hobbie_FC (descripcion) values ('Aviones Spotting '); | |
insert into bd_test.hobbie_FC (descripcion) values ('Aerografía '); |
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
/* Creando Tablas */ | |
use bd_test; | |
drop table if exists bd_test.cliente_FC; | |
CREATE TABLE bd_test.cliente_FC ( | |
id_cliente int NOT NULL AUTO_INCREMENT, | |
nombre varchar(200) NOT NULL, |
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
#!/usr/bin/env groovy | |
import groovy.sql.Sql | |
import groovy.util.logging.* | |
import java.sql.SQLException | |
import org.apache.log4j.* | |
import BGUTPConexion | |
import BGUTPLogger | |
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
#!/usr/bin/env groovy | |
import groovy.sql.Sql | |
import groovy.util.logging.* | |
import java.sql.SQLException | |
import org.apache.log4j.* | |
import BGUTPConexion | |
import BGUTPLogger | |
@Log4j |
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
#!/usr/bin/env groovy | |
import groovy.sql.Sql | |
import groovy.util.logging.* | |
import java.sql.SQLException | |
import org.apache.log4j.* | |
import BGUTPConexion | |
import BGUTPLogger | |
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
# GITHUB | |
Host github.com | |
HostName github.com | |
PreferredAuthentications publickey | |
IdentityFile ~/.ssh/github/id_rsa_pub | |
# GITLAB | |
Host gitlab.com | |
HostName gitlab.com | |
PreferredAuthentications publickey |
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
BEGIN | |
FOR cur_rec IN (SELECT object_name, object_type | |
FROM user_objects | |
WHERE object_type IN | |
('TABLE', | |
'VIEW', | |
'MATERIALIZED VIEW', | |
'PACKAGE', | |
'PROCEDURE', | |
'FUNCTION', |
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
$ git config --global user.name "your_github_username" | |
$ git config --global user.email "your_github_email" | |
$ git config -l |
OlderNewer