Buscar
Creative Commons of Guatemala
Choc Cac, Victor Hugo
http://victorhugocc.choccac.com by Victor Hugo Choc Cac is licensed under a Creative Commons Reconocimiento-SinObraDerivada 3.0 Guatemala License. Creado a partir de la obra en victorhugo.choccac.com. Permissions beyond the scope of this license may be available at http://victorhugocc.choccac.com.
-
Entradas recientes
Archivos
- enero 2021
- mayo 2019
- junio 2018
- mayo 2018
- abril 2018
- abril 2016
- marzo 2016
- febrero 2016
- noviembre 2015
- octubre 2015
- septiembre 2015
- agosto 2015
- julio 2015
- noviembre 2014
- abril 2014
- marzo 2014
- febrero 2014
- diciembre 2013
- septiembre 2013
- junio 2012
- diciembre 2011
- julio 2011
- junio 2011
- enero 2011
- octubre 2010
- agosto 2010
- julio 2010
- junio 2010
- julio 2009
- enero 2009
- noviembre 2008
- septiembre 2008
- mayo 2008
- marzo 2008
- julio 2007
- junio 2007
- mayo 2007
- abril 2007
- abril 2004
- abril 2003
Sistemas CC
Archivo mensual: mayo 2019
Oracle SQL with carriage return
create table rc as select ‘ABC</>DEF FF</>ZZZ’ rc from dual; select * from rc; WITH RETURN_LINE AS ( SELECT rc FROM rc ) SELECT trim(regexp_substr(rc, ‘[^]+’, 1, LEVEL)) rc FROM RETURN_LINE CONNECT BY instr(rc, », 1, LEVEL – 1) > … Sigue leyendo
Publicado en DataBase, Oracle Data Base
Etiquetado Oracle SQL with carriage return, Sql Split Carriage Return
Deja un comentario
Oracle Segmentation 9i
Oracle9i 9.2.0.6.0 – 64bit Production Execute this query WITH T AS ( SELECT ‘/20/’ TXT FROM DUAL UNION SELECT ‘/20/21/’ TXT FROM DUAL UNION SELECT ‘/20/22/’ TXT FROM DUAL UNION SELECT ‘/20/23/24/’ TXT FROM DUAL UNION SELECT ‘/20/23/25/’ TXT FROM … Sigue leyendo
Publicado en DataBase, Oracle Data Base
Etiquetado Delimiter Row Oracle, Delimiter SQL Oracle, Oracle Segmentation 9i
Deja un comentario
Oracle Heterogeneous Services conectar MySQL ODBC
1) Configura Heterogeneous Services, creamos un archivo llamdo initChocMySQL y le agregamos estos parámetros: Nombre el Archivo: initChocMySQL.oraHS_FDS_CONNECT_INFO = ChocMySQLHS_FDS_TRACE_LEVEL = OFF 2) configurar listener.ora agregar el siguiente parametro a SID_LIST_LISTENER (SID_DESC = (SID_NAME = ChocMySQL) (ORACLE_HOME = C:\oraclexe\app\oracle\product\11.2.0\server) (PROGRAM=dg4odbc) … Sigue leyendo