{"id":6435,"date":"2026-08-19T17:41:27","date_gmt":"2026-08-19T17:41:27","guid":{"rendered":"https:\/\/oracleconraul.com\/?p=6435"},"modified":"2026-08-19T18:28:58","modified_gmt":"2026-08-19T18:28:58","slug":"oracle-data-pump-tecnicas-practicas-de-exportacion-e-importacion-utilizando-exclude-y-query","status":"publish","type":"post","link":"https:\/\/oracleconraul.com\/index.php\/2026\/08\/19\/oracle-data-pump-tecnicas-practicas-de-exportacion-e-importacion-utilizando-exclude-y-query\/","title":{"rendered":"Oracle Data Pump: T\u00e9cnicas pr\u00e1cticas de exportaci\u00f3n e importaci\u00f3n utilizando EXCLUDE y QUERY"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">En esta entrada vamos a ver varios casos con export que pueden ser de gran utilidad.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">En muchas ocasiones, nos encontramos con la necesidad de excluir objetos en nuestro export o filtrar datos espec\u00edficos en nuestro expd, usamos los par\u00e1metros <strong>EXCLUDE <\/strong>(omitir objetos) o <strong>QUERY <\/strong>(filtrar los registros a exportar).<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Vamos a utilizar el esquema de ejemplo Oracle (HR) para realizar esta pr\u00e1ctica.<br><br>Recordamos las tablas del esquema:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"199\" height=\"206\" src=\"https:\/\/oracleconraul.com\/wp-content\/uploads\/2026\/08\/image.png\" alt=\"\" class=\"wp-image-6442\"\/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>1 &#8211; EXCLUIR UNA TABLA EN CONCRETO<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Vamos a realizar un export del esquema, y vamos a excluir una tabla, p.ej. REGIONS<\/p>\n\n\n\n<p class=\"has-cyan-bluish-gray-background-color has-background wp-block-paragraph\">expdp system\/**** directory=export schemas=<strong><em>HR EXCLUDE=TABLE:\u00bbIN(&#8216;REGIONS&#8217;)\u00bb <\/em><\/strong>dumpfile=export_exclude_table.dmp logfile=export_exclude_table.log metrics=y logtime=all<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Nota: importante que<strong> no haya espacios <\/strong>entre en las sentencias exclude con el resto de sentencia para evitar problemas en el exp<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><br>oracle@localhost ~]$ expdp system\/**** directory=export schemas=HR  EXCLUDE=TABLE:\" IN('REGIONS')\" dumpfile=export_exclude_table.dmp logfile=export_exclude_table.log metrics=y logtime=all<br><br>Export: Release 19.0.0.0.0 - Production on Tue Aug 18 15:06:24 2026<br>Version 19.3.0.0.0<br><br>Copyright (c) 1982, 2019, Oracle and\/or its affiliates.  All rights reserved.<br><br>Connected to: Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production<br>UDE-00014: invalid value for parameter, 'exclude'.<br><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Nota: Si tienes dos esquemas donde existe una tabla con el mismo nombre no podr\u00e1s excluirla, aunque en el comando pongas SCHEMA.TABLE o incluso a\u00f1adiendo alguna sentencia exclude c\u00f3mo la siguiente EXCLUDE=TABLE:\u00bbIN (SELECT table_name FROM dba_tables WHERE owner=&#8217;HR&#8217; AND table_name=&#8217;REGIONS&#8217;)\u00bb. Esto es un error conocido de expdp donde se excluir\u00e1 la tabla REGIONS de los dos esquemas. Si este es tu caso, como alternativa se suelen hacer dos export por separado. uno sin REGIONS en el esquema a excluir y otro con todas las tablas al completo.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Ejemplo. Excluimos tablas JOBS y JOBS1 del export de HR.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[oracle@localhost ~]$ cat <strong>exclude.par <\/strong><br><strong>DIRECTORY=export<br>SCHEMAS=HR<br>EXCLUDE=TABLE:\"IN('JOBS','JOBS1')\"<br>DUMPFILE=export_exclude_tables.dmp<br>LOGFILE=export_exclude_tables.log<br>METRICS=Y<br>LOGTIME=ALL<\/strong><br><br>&lt;pre&gt;[oracle@localhost ~]$ <strong>expdp system\/**** parfile=exclude.par<br><\/strong><br>Export: Release 19.0.0.0.0 - Production on Wed Aug 19 10:08:46 2026<br>Version 19.3.0.0.0<br><br>Copyright (c) 1982, 2019, Oracle and\/or its affiliates.  All rights reserved.<br><br>Connected to: Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production<br>19-AGO-26 10:08:50.439: Iniciando &amp;quot;SYSTEM&amp;quot;.&amp;quot;SYS_EXPORT_SCHEMA_01&amp;quot;:  system\/******** parfile=exclude.par <br>19-AGO-26 10:08:51.305: W-1 El inicio ha tardado 1 segundos<br>19-AGO-26 10:08:56.040: W-1 Procesando el tipo de objeto SCHEMA_EXPORT\/TABLE\/TABLE_DATA<br>19-AGO-26 10:08:56.534: W-1 Procesando el tipo de objeto SCHEMA_EXPORT\/TABLE\/INDEX\/STATISTICS\/INDEX_STATISTICS<br>19-AGO-26 10:08:56.709: W-1      Se han terminado 18 INDEX_STATISTICS objetos en 0 segundos<br>19-AGO-26 10:08:57.217: W-1 Procesando el tipo de objeto SCHEMA_EXPORT\/TABLE\/STATISTICS\/TABLE_STATISTICS<br>19-AGO-26 10:08:57.285: W-1      Se han terminado 6 TABLE_STATISTICS objetos en 1 segundos<br>19-AGO-26 10:09:05.274: W-1 Procesando el tipo de objeto SCHEMA_EXPORT\/STATISTICS\/MARKER<br>19-AGO-26 10:09:05.543: W-1      Se han terminado 1 MARKER objetos en 8 segundos<br>19-AGO-26 10:09:05.700: W-1 Procesando el tipo de objeto SCHEMA_EXPORT\/USER<br>19-AGO-26 10:09:05.794: W-1      Se han terminado 1 USER objetos en 0 segundos<br>19-AGO-26 10:09:05.874: W-1 Procesando el tipo de objeto SCHEMA_EXPORT\/SYSTEM_GRANT<br>19-AGO-26 10:09:05.960: W-1      Se han terminado 7 SYSTEM_GRANT objetos en 0 segundos<br>19-AGO-26 10:09:06.043: W-1 Procesando el tipo de objeto SCHEMA_EXPORT\/ROLE_GRANT<br>19-AGO-26 10:09:06.125: W-1      Se han terminado 1 ROLE_GRANT objetos en 0 segundos<br>19-AGO-26 10:09:06.201: W-1 Procesando el tipo de objeto SCHEMA_EXPORT\/DEFAULT_ROLE<br>19-AGO-26 10:09:06.282: W-1      Se han terminado 1 DEFAULT_ROLE objetos en 0 segundos<br>19-AGO-26 10:09:06.462: W-1 Procesando el tipo de objeto SCHEMA_EXPORT\/TABLESPACE_QUOTA<br>19-AGO-26 10:09:06.537: W-1      Se han terminado 1 TABLESPACE_QUOTA objetos en 0 segundos<br>19-AGO-26 10:09:06.883: W-1 Procesando el tipo de objeto SCHEMA_EXPORT\/PRE_SCHEMA\/PROCACT_SCHEMA<br>19-AGO-26 10:09:06.965: W-1      Se han terminado 1 PROCACT_SCHEMA objetos en 0 segundos<br>19-AGO-26 10:09:09.460: W-1 Procesando el tipo de objeto SCHEMA_EXPORT\/SEQUENCE\/SEQUENCE<br>19-AGO-26 10:09:09.547: W-1      Se han terminado 3 SEQUENCE objetos en 0 segundos<br>&lt;\/pre&gt;<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>2 &#8211; EXCLUIR INDICES<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Para excluir todos los \u00edndices de todos los esquemas.<\/p>\n\n\n\n<p class=\"has-cyan-bluish-gray-background-color has-background wp-block-paragraph\">expdp system\/**** directory=export full=yes <strong>EXCLUDE=INDEX<\/strong> dumpfile=export_exclude_index.dmp logfile=export_exclude_index.log metrics=y logtime=all<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Para excluir un \u00edndice en concreto. La limitaci\u00f3n si existen dos \u00edndices en diferentes esquemas es la misma que la explicada a nivel de tabla.<\/p>\n\n\n\n<p class=\"has-cyan-bluish-gray-background-color has-background wp-block-paragraph\">expdp system\/**** directory=export full=ye<strong>s EXCLUDE=INDEX:\u00bbIN(<\/strong>&#8216;EMP_NAME_IX&#8217;)\u00bb dumpfile=export_exclude_index.dmp logfile=export_exclude_index.log<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>3  &#8211; EXCLUIR INDICES &#8211; CONSTRAINTS<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">En este ejemplo  excluimos el \u00edndice EMP_NAME_IX y la constraint JOB_ID_PK.<\/p>\n\n\n\n<p class=\"has-cyan-bluish-gray-background-color has-background wp-block-paragraph\">expdp system\/**** directory=export full=yes EXCLUDE=<strong>INDEX:\u00bbIN(&#8216;EMP_NAME_IX&#8217;)\u00bb,CONSTRAINT:\u00bbIN(&#8216;JOB_ID_PK&#8217;)\u00bb <\/strong>dumpfile=export_exclude_indexes.dmp logfile=export_exclude_indexes.log<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">Connected to: Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production\nIniciando \"SYSTEM\".\"SYS_EXPORT_FULL_01\":  system\/******** directory=export full=yes EXCLUDE=INDEX:IN('EMP_NAME_IX'),CONSTRAINT:IN('JOB_ID_PK') dumpfile=export_exclude_indexes.dmp logfile=export_exclude_indexes.log \nProcesando el tipo de objeto DATABASE_EXPORT\/EARLY_OPTIONS\/VIEWS_AS_TABLES\/TABLE_DATA\nProcesando el tipo de objeto DATABASE_EXPORT\/NORMAL_OPTIONS\/TABLE_DATA\nProcesando el tipo de objeto DATABASE_EXPORT\/NORMAL_OPTIONS\/VIEWS_AS_TABLES\/TABLE_DATA\nProcesando el tipo de objeto DATABASE_EXPORT\/SCHEMA\/TABLE\/TABLE_DATA\nProcesando el tipo de objeto DATABASE_EXPORT\/SCHEMA\/TABLE\/INDEX\/STATISTICS\/INDEX_STATISTICS\nProcesando el tipo de objeto DATABASE_EXPORT\/SCHEMA\/TABLE\/STATISTICS\/TABLE_STATISTICS\nProcesando el tipo de objeto DATABASE_EXPORT\/STATISTICS\/MARKER\nProcesando el tipo de objeto DATABASE_EXPORT\/PRE_SYSTEM_IMPCALLOUT\/MARKER\nProcesando el tipo de objeto DATABASE_EXPORT\/PRE_INSTANCE_IMPCALLOUT\/MARKER\nProcesando el tipo de objeto DATABASE_EXPORT\/TABLESPACE\nProcesando el tipo de objeto DATABASE_EXPORT\/PROFILE\nProcesando el tipo de objeto DATABASE_EXPORT\/SCHEMA\/USER\nProcesando el tipo de objeto DATABASE_EXPORT\/RADM_FPTM\nProcesando el tipo de objeto DATABASE_EXPORT\/GRANT\/SYSTEM_GRANT\/PROC_SYSTEM_GRANT\nProcesando el tipo de objeto DATABASE_EXPORT\/SCHEMA\/GRANT\/SYSTEM_GRANT\nProcesando el tipo de objeto DATABASE_EXPORT\/SCHEMA\/ROLE_GRANT\nProcesando el tipo de objeto DATABASE_EXPORT\/SCHEMA\/DEFAULT_ROLE\nProcesando el tipo de objeto DATABASE_EXPORT\/SCHEMA\/ON_USER_GRANT\nProcesando el tipo de objeto DATABASE_EXPORT\/SCHEMA\/TABLESPACE_QUOTA\nProcesando el tipo de objeto DATABASE_EXPORT\/RESOURCE_COST\nProcesando el tipo de objeto DATABASE_EXPORT\/TRUSTED_DB_LINK\nProcesando el tipo de objeto DATABASE_EXPORT\/SCHEMA\/SEQUENCE\/SEQUENCE\nProcesando el tipo de objeto DATABASE_EXPORT\/DIRECTORY\/DIRECTORY\nProcesando el tipo de objeto DATABASE_EXPORT\/SYSTEM_PROCOBJACT\/PRE_SYSTEM_ACTIONS\/PROCACT_SYSTEM\nProcesando el tipo de objeto DATABASE_EXPORT\/SYSTEM_PROCOBJACT\/PROCOBJ\nProcesando el tipo de objeto DATABASE_EXPORT\/SYSTEM_PROCOBJACT\/POST_SYSTEM_ACTIONS\/PROCACT_SYSTEM\nProcesando el tipo de objeto DATABASE_EXPORT\/SCHEMA\/PROCACT_SCHEMA\nProcesando el tipo de objeto DATABASE_EXPORT\/EARLY_OPTIONS\/VIEWS_AS_TABLES\/TABLE\nProcesando el tipo de objeto DATABASE_EXPORT\/EARLY_POST_INSTANCE_IMPCALLOUT\/MARKER\nProcesando el tipo de objeto DATABASE_EXPORT\/NORMAL_OPTIONS\/TABLE\nSProcesando el tipo de objeto DATABASE_EXPORT\/NORMAL_OPTIONS\/VIEWS_AS_TABLES\/TABLE\nProcesando el tipo de objeto DATABASE_EXPORT\/NORMAL_POST_INSTANCE_IMPCALLOUT\/MARKER\nSProcesando el tipo de objeto DATABASE_EXPORT\/SCHEMA\/TABLE\/TABLE\nProcesando el tipo de objeto DATABASE_EXPORT\/SCHEMA\/TABLE\/COMMENT\nProcesando el tipo de objeto DATABASE_EXPORT\/SCHEMA\/PROCEDURE\/PROCEDURE\nProcesando el tipo de objeto DATABASE_EXPORT\/SCHEMA\/PROCEDURE\/ALTER_PROCEDURE\nProcesando el tipo de objeto DATABASE_EXPORT\/SCHEMA\/VIEW\/VIEW\nProcesando el tipo de objeto DATABASE_EXPORT\/SCHEMA\/TABLE\/INDEX\/INDEX\nProcesando el tipo de objeto DATABASE_EXPORT\/SCHEMA\/TABLE\/CONSTRAINT\/CONSTRAINT\nProcesando el tipo de objeto DATABASE_EXPORT\/SCHEMA\/TABLE\/CONSTRAINT\/REF_CONSTRAINT\nProcesando el tipo de objeto DATABASE_EXPORT\/SCHEMA\/TABLE\/TRIGGER\nProcesando el tipo de objeto DATABASE_EXPORT\/FINAL_POST_INSTANCE_IMPCALLOUT\/MARKER\n\n<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">4<strong>  &#8211; EXCLUIR SCHEMAS<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">En alg\u00fan momento puede ser necesario excluir alg\u00fan esquema de nuestro export, para ello lo haremos de la siguiente manera:<\/p>\n\n\n\n<p class=\"has-cyan-bluish-gray-background-color has-background wp-block-paragraph\">expdp system\/***** directory=export full=yes <strong>EXCLUDE=SCHEMA:\\\u00bb=\\&#8217;HR\\&#8217;\\\u00bb <\/strong>dumpfile=export_exclude_schemas.dmp logfile=export_exclude_schemas.log metrics=y logtime=all<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[oracle@localhost ~]$ expdp system\/**** directory=export full=yes   EXCLUDE=SCHEMA:\\\"=\\'HR\\'\\\" dumpfile=export_exclude_schemas.dmp logfile=export_exclude_schemas.log metrics=y logtime=all<br><br>Export: Release 19.0.0.0.0 - Production on Wed Aug 19 00:06:20 2026<br>Version 19.3.0.0.0<br><br>Copyright (c) 1982, 2019, Oracle and\/or its affiliates.  All rights reserved.<br><br>Connected to: Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production<br>19-AGO-26 00:06:26.625: Iniciando \"SYSTEM\".\"SYS_EXPORT_FULL_01\":  system\/******** directory=export full=yes EXCLUDE=SCHEMA:\"='HR'\" dumpfile=export_exclude_schemas.dmp logfile=export_exclude_schemas.log metrics=y logtime=all <br>19-AGO-26 00:06:27.462: W-1 El inicio ha tardado 1 segundos<br>19-AGO-26 00:06:34.516: W-1 Procesando el tipo de objeto DATABASE_EXPORT\/EARLY_OPTIONS\/VIEWS_AS_TABLES\/TABLE_DATA<br>19-AGO-26 00:06:36.822: W-1 Procesando el tipo de objeto DATABASE_EXPORT\/NORMAL_OPTIONS\/TABLE_DATA<br>19-AGO-26 00:06:39.279: W-1 Procesando el tipo de objeto DATABASE_EXPORT\/NORMAL_OPTIONS\/VIEWS_AS_TABLES\/TABLE_DATA<br>19-AGO-26 00:06:41.718: W-1 Procesando el tipo de objeto DATABASE_EXPORT\/SCHEMA\/TABLE\/TABLE_DATA<br>19-AGO-26 00:06:42.201: W-1 Procesando el tipo de objeto DATABASE_EXPORT\/SCHEMA\/TABLE\/INDEX\/STATISTICS\/INDEX_STATISTICS<br>19-AGO-26 00:06:42.487: W-1      Se han terminado 19 INDEX_STATISTICS objetos en 0 segundos<br>19-AGO-26 00:06:43.065: W-1 Procesando el tipo de objeto DATABASE_EXPORT\/SCHEMA\/TABLE\/STATISTICS\/TABLE_STATISTICS<br>19-AGO-26 00:06:43.145: W-1      Se han terminado 7 TABLE_STATISTICS objetos en 1 segundos<br>19-AGO-26 00:06:52.792: W-1 Procesando el tipo de objeto DATABASE_EXPORT\/STATISTICS\/MARKER<br>19-AGO-26 00:06:53.064: W-1      Se han terminado 1 MARKER objetos en 10 segundos<br>19-AGO-26 00:06:53.151: W-1 Procesando el tipo de objeto DATABASE_EXPORT\/PRE_SYSTEM_IMPCALLOUT\/MARKER<br>19-AGO-26 00:06:53.182: W-1      Se han terminado 1 MARKER objetos en 10 segundos<br>19-AGO-26 00:06:53.236: W-1 Procesando el tipo de objeto DATABASE_EXPORT\/PRE_INSTANCE_IMPCALLOUT\/MARKER<br>19-AGO-26 00:06:53.267: W-1      Se han terminado 1 MARKER objetos en 10 segundos<br>19-AGO-26 00:06:53.568: W-1 Procesando el tipo de objeto DATABASE_EXPORT\/TABLESPACE<br>19-AGO-26 00:06:53.745: W-1      Se han terminado 3 TABLESPACE objetos en 0 segundos<br>19-AGO-26 00:06:53.963: W-1 Procesando el tipo de objeto DATABASE_EXPORT\/PROFILE<br>19-AGO-26 00:06:54.038: W-1      Se han terminado 1 PROFILE objetos en 0 segundos<br>19-AGO-26 00:06:54.229: W-1 Procesando el tipo de objeto DATABASE_EXPORT\/SCHEMA\/USER<br>19-AGO-26 00:06:54.289: W-1      Se han terminado 1 USER objetos en 0 segundos<br>19-AGO-26 00:06:54.560: W-1 Procesando el tipo de objeto DATABASE_EXPORT\/RADM_FPTM<br>19-AGO-26 00:06:54.630: W-1      Se han terminado 1 RADM_FPTM objetos en 0 segundos<br>19-AGO-26 00:06:55.117: W-1 Procesando el tipo de objeto DATABASE_EXPORT\/GRANT\/SYSTEM_GRANT\/PROC_SYSTEM_GRANT<br>19-AGO-26 00:06:55.187: W-1      Se han terminado 7 PROC_SYSTEM_GRANT objetos en 1 segundos<br>19-AGO-26 00:06:55.303: W-1 Procesando el tipo de objeto DATABASE_EXPORT\/SCHEMA\/GRANT\/SYSTEM_GRANT<br>19-AGO-26 00:06:55.386: W-1      Se han terminado 23 SYSTEM_GRANT objetos en 0 segundos<br>19-AGO-26 00:06:55.461: W-1 Procesando el tipo de objeto DATABASE_EXPORT\/SCHEMA\/ROLE_GRANT<br>19-AGO-26 00:06:55.558: W-1      Se han terminado 6 ROLE_GRANT objetos en 0 segundos<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>5 &#8211; EXCLUIR PATRONES<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">A veces es necesario excluir objetos que coincidan con un patr\u00f3n. En este ejemplo se han creado 2 tablas adicionales a JOBS (JOBS1,JOBS2). Vamos a crear un .par para <strong>excluir las tablas con nombre JOBS.<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">SQL&gt; show user\nUSER es \"HR\"\nSQL&gt; select table_name from user_tables order by 1 asc;\n\nTABLE_NAME\n--------------------------------------------------------------------------------\nCOUNTRIES\nDEPARTMENTS\nEMPLOYEES\nJOB_HISTORY\nJOBS\nJOBS1\nJOBS2\nLOCATIONS\nREGIONS\n\n9 filas seleccionadas.\n<\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\">[oracle@localhost ~]$<strong><em> cat exclude.par <\/em><\/strong><br>DIRECTORY=export<br>SCHEMAS=HR<br><strong>exclude=TABLE:\"LIKE 'JOBS%'\"<\/strong> <br>DUMPFILE=export_exclude_tables.dmp<br>LOGFILE=export_exclude_tables.log<br>METRICS=Y<br>LOGTIME=ALL<br>[oracle@localhost ~]$ <br><\/pre>\n\n\n\n<p class=\"has-cyan-bluish-gray-background-color has-background wp-block-paragraph\">[oracle@localhost ~]$<strong> expdp system\/**** parfile=exclude.par<\/strong><br><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">19-AGO-26 11:28:20.606: W-1 . . ha exportado \"HR\".\"EMPLOYEES\"                            17.08 KB     107 filas en 0 segundos con direct_path\n19-AGO-26 11:28:20.692: W-1 . . ha exportado \"HR\".\"LOCATIONS\"                            8.437 KB      23 filas en 0 segundos con direct_path\n19-AGO-26 11:28:20.824: W-1 . . ha exportado \"HR\".\"JOB_HISTORY\"                          7.195 KB      10 filas en 0 segundos con direct_path\n19-AGO-26 11:28:21.017: W-1 . . ha exportado \"HR\".\"DEPARTMENTS\"                          7.125 KB      27 filas en 1 segundos con direct_path\n19-AGO-26 11:28:21.759: W-1 . . ha exportado \"HR\".\"COUNTRIES\"                            6.367 KB      25 filas en 0 segundos con external_table\n19-AGO-26 11:28:21.985: W-1 . . ha exportado \"HR\".\"REGIONS\"                              5.546 KB       4 filas en 0 segundos con direct_path\n19-AGO-26 11:28:22.500: W-1      Se han terminado 6 SCHEMA_EXPORT\/TABLE\/TABLE_DATA objetos en 1 segundos\n<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>6- COMBINAR OPCIONES<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Es bastante normal tener que combinar diferentes opciones en los exports de tus datos. En este ejemplo eliminamos del expdp todas las sequencias y las tablas que comiencen con JOBS del schema HR.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[oracle@localhost ~]$ cat exclude.par <br>DIRECTORY=export<br>SCHEMAS=HR<br><strong>exclude=SEQUENCE,TABLE:\"LIKE 'JOBS%'\" <\/strong><br>DUMPFILE=export_exclude_tables.dmp<br>LOGFILE=export_exclude_tables.log<br>METRICS=Y<br>LOGTIME=ALL<br><\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\">[oracle@localhost ~]$ expdp system\/**** parfile=exclude.par<br><br>Export: Release 19.0.0.0.0 - Production on Wed Aug 19 11:39:39 2026<br>Version 19.3.0.0.0<br><br>Copyright (c) 1982, 2019, Oracle and\/or its affiliates.  All rights reserved.<br><br>Connected to: Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production<br>19-AGO-26 11:39:43.520: Iniciando \"SYSTEM\".\"SYS_EXPORT_SCHEMA_01\":  system\/******** parfile=exclude.par <br>19-AGO-26 11:39:44.290: W-1 El inicio ha tardado 1 segundos<br>19-AGO-26 11:39:48.898: W-1 Procesando el tipo de objeto SCHEMA_EXPORT\/TABLE\/TABLE_DATA<br>19-AGO-26 11:39:49.364: W-1 Procesando el tipo de objeto SCHEMA_EXPORT\/TABLE\/INDEX\/STATISTICS\/INDEX_STATISTICS<br>19-AGO-26 11:39:49.518: W-1      Se han terminado 18 INDEX_STATISTICS objetos en 0 segundos<br>19-AGO-26 11:39:49.981: W-1 Procesando el tipo de objeto SCHEMA_EXPORT\/TABLE\/STATISTICS\/TABLE_STATISTICS<br>19-AGO-26 11:39:50.067: W-1      Se han terminado 6 TABLE_STATISTICS objetos en 1 segundos<br>19-AGO-26 11:39:56.502: W-1 Procesando el tipo de objeto SCHEMA_EXPORT\/STATISTICS\/MARKER<br>19-AGO-26 11:39:56.778: W-1      Se han terminado 1 MARKER objetos en 6 segundos<br>19-AGO-26 11:39:56.958: W-1 Procesando el tipo de objeto SCHEMA_EXPORT\/USER<br>19-AGO-26 11:39:57.049: W-1      Se han terminado 1 USER objetos en 1 segundos<br>19-AGO-26 11:39:57.136: W-1 Procesando el tipo de objeto SCHEMA_EXPORT\/SYSTEM_GRANT<br>19-AGO-26 11:39:57.208: W-1      Se han terminado 7 SYSTEM_GRANT objetos en 0 segundos<br>19-AGO-26 11:39:57.281: W-1 Procesando el tipo de objeto SCHEMA_EXPORT\/ROLE_GRANT<br>19-AGO-26 11:39:57.385: W-1      Se han terminado 1 ROLE_GRANT objetos en 0 segundos<br>19-AGO-26 11:39:57.457: W-1 Procesando el tipo de objeto SCHEMA_EXPORT\/DEFAULT_ROLE<br>19-AGO-26 11:39:57.568: W-1      Se han terminado 1 DEFAULT_ROLE objetos en 0 segundos<br>19-AGO-26 11:39:57.733: W-1 Procesando el tipo de objeto SCHEMA_EXPORT\/TABLESPACE_QUOTA<br>19-AGO-26 11:39:57.819: W-1      Se han terminado 1 TABLESPACE_QUOTA objetos en 0 segundos<br>19-AGO-26 11:39:58.016: W-1 Procesando el tipo de objeto SCHEMA_EXPORT\/PRE_SCHEMA\/PROCACT_SCHEMA<br>19-AGO-26 11:39:58.098: W-1      Se han terminado 1 PROCACT_SCHEMA objetos en 1 segundos<br>19-AGO-26 11:40:25.521: W-1 Procesando el tipo de objeto SCHEMA_EXPORT\/TABLE\/TABLE<br>19-AGO-26 11:40:28.725: W-1      Se han terminado 6 TABLE objetos en 25 segundos<br>19-AGO-26 11:40:29.861: W-1 Procesando el tipo de objeto SCHEMA_EXPORT\/TABLE\/COMMENT<br>19-AGO-26 11:40:29.962: W-1      Se han terminado 34 COMMENT objetos en 0 segundos<br>19-AGO-26 11:40:32.546: W-1 Procesando el tipo de objeto SCHEMA_EXPORT\/PROCEDURE\/PROCEDURE<br>19-AGO-26 11:40:32.615: W-1      Se han terminado 2 PROCEDURE objetos en 0 segundos<br>19-AGO-26 11:40:33.427: W-1 Procesando el tipo de objeto SCHEMA_EXPORT\/PROCEDURE\/ALTER_PROCEDURE<br>19-AGO-26 11:40:33.485: W-1      Se han terminado 2 ALTER_PROCEDURE objetos en 0 segundos<br>19-AGO-26 11:40:37.828: W-1 Procesando el tipo de objeto SCHEMA_EXPORT\/VIEW\/VIEW<br>19-AGO-26 11:40:37.882: W-1      Se han terminado 1 VIEW objetos en 4 segundos<br>19-AGO-26 11:40:41.377: W-1 Procesando el tipo de objeto SCHEMA_EXPORT\/TABLE\/INDEX\/INDEX<br>19-AGO-26 11:40:41.551: W-1      Se han terminado 16 INDEX objetos en 3 segundos<br>19-AGO-26 11:40:43.396: W-1 Procesando el tipo de objeto SCHEMA_EXPORT\/TABLE\/CONSTRAINT\/CONSTRAINT<br>19-AGO-26 11:40:43.468: W-1      Se han terminado 8 CONSTRAINT objetos en 2 segundos<br>19-AGO-26 11:40:45.891: W-1 Procesando el tipo de objeto SCHEMA_EXPORT\/TABLE\/CONSTRAINT\/REF_CONSTRAINT<br>19-AGO-26 11:40:45.958: W-1      Se han terminado 10 REF_CONSTRAINT objetos en 0 segundos<br>19-AGO-26 11:40:46.219: W-1 Procesando el tipo de objeto SCHEMA_EXPORT\/TABLE\/TRIGGER<br>19-AGO-26 11:40:46.299: W-1      Se han terminado 2 TRIGGER objetos en 0 segundos<br>19-AGO-26 11:40:51.410: W-1 . . ha exportado \"HR\".\"EMPLOYEES\"                            17.08 KB     107 filas en 0 segundos con direct_path<br>19-AGO-26 11:40:51.498: W-1 . . ha exportado \"HR\".\"LOCATIONS\"                            8.437 KB      23 filas en 0 segundos con direct_path<br>19-AGO-26 11:40:51.621: W-1 . . ha exportado \"HR\".\"JOB_HISTORY\"                          7.195 KB      10 filas en 0 segundos con direct_path<br>19-AGO-26 11:40:51.715: W-1 . . ha exportado \"HR\".\"DEPARTMENTS\"                          7.125 KB      27 filas en 0 segundos con direct_path<br>19-AGO-26 11:40:52.460: W-1 . . ha exportado \"HR\".\"COUNTRIES\"                            6.367 KB      25 filas en 1 segundos con external_table<br>19-AGO-26 11:40:52.602: W-1 . . ha exportado \"HR\".\"REGIONS\"                              5.546 KB       4 filas en 0 segundos con direct_path<br>19-AGO-26 11:40:53.074: W-1      Se han terminado 6 SCHEMA_EXPORT\/TABLE\/TABLE_DATA objetos en 1 segundos<br>19-AGO-26 11:40:54.940: W-1 La tabla maestra \"SYSTEM\".\"SYS_EXPORT_SCHEMA_01\" se ha cargado\/descargado correctamente<br>19-AGO-26 11:40:54.990: ******************************************************************************<br>19-AGO-26 11:40:54.992: El juego de archivos de volcado para SYSTEM.SYS_EXPORT_SCHEMA_01 es:<br>19-AGO-26 11:40:55.001:   \/data\/export\/export_exclude_tables.dmp<br><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>7- USO DE QUERY<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Dentro del export podemos usar una consulta espec\u00edfica para acotar la exportaci\u00f3n de datos. P.ej. La tabla COUNTRIES tiene 25 registros. Vamos a realizar un export del shema propietario HR, acontando la exportaci\u00f3n de datos de esta tabla a los que cumplan la condici\u00f3n REGION_ID=2 que son 5 registros.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">SQL&gt; select count(1) from HR.COUNTRIES;<br><br>  COUNT(1)<br>----------<br>    25<br><br>SQL&gt;  <strong>select count(1) from HR.COUNTRIES WHERE REGION_ID=2;<\/strong><br><br>  COUNT(1)<br>----------<br>     5<br><\/pre>\n\n\n\n<p class=\"has-cyan-bluish-gray-background-color has-background wp-block-paragraph\">[expdp system\/**** dumpfile=export_query_example.dmp logfile=exp_query_example.log directory=export schemas=HR <strong>query=&#8217;HR.COUNTRIES:\u00bbWHERE  REGION_ID=2&#8243;&#8216;<\/strong><br><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[oracle@localhost ~]$ expdp system\/**** dumpfile=export_query_example.dmp logfile=exp_query_example.log directory=export schemas=HR <strong>query='HR.COUNTRIES:\"WHERE  REGION_ID=2\"'<\/strong><br><br>Export: Release 19.0.0.0.0 - Production on Wed Aug 19 14:59:20 2026<br>Version 19.3.0.0.0<br><br>Copyright (c) 1982, 2019, Oracle and\/or its affiliates.  All rights reserved.<br><br>Connected to: Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production<br>Iniciando \"SYSTEM\".\"SYS_EXPORT_SCHEMA_01\":  system\/******** dumpfile=export_query_example.dmp logfile=exp_query_example.log directory=export schemas=HR query=HR.COUNTRIES:\"WHERE  REGION_ID=2\" <br>Procesando el tipo de objeto SCHEMA_EXPORT\/TABLE\/TABLE_DATA<br>Procesando el tipo de objeto SCHEMA_EXPORT\/TABLE\/INDEX\/STATISTICS\/INDEX_STATISTICS<br>Procesando el tipo de objeto SCHEMA_EXPORT\/TABLE\/STATISTICS\/TABLE_STATISTICS<br>Procesando el tipo de objeto SCHEMA_EXPORT\/STATISTICS\/MARKER<br>Procesando el tipo de objeto SCHEMA_EXPORT\/USER<br>Procesando el tipo de objeto SCHEMA_EXPORT\/SYSTEM_GRANT<br>Procesando el tipo de objeto SCHEMA_EXPORT\/ROLE_GRANT<br>Procesando el tipo de objeto SCHEMA_EXPORT\/DEFAULT_ROLE<br>Procesando el tipo de objeto SCHEMA_EXPORT\/TABLESPACE_QUOTA<br>Procesando el tipo de objeto SCHEMA_EXPORT\/PRE_SCHEMA\/PROCACT_SCHEMA<br>Procesando el tipo de objeto SCHEMA_EXPORT\/SEQUENCE\/SEQUENCE<br>Procesando el tipo de objeto SCHEMA_EXPORT\/TABLE\/TABLE<br>Procesando el tipo de objeto SCHEMA_EXPORT\/TABLE\/COMMENT<br>Procesando el tipo de objeto SCHEMA_EXPORT\/PROCEDURE\/PROCEDURE<br>Procesando el tipo de objeto SCHEMA_EXPORT\/PROCEDURE\/ALTER_PROCEDURE<br>Procesando el tipo de objeto SCHEMA_EXPORT\/VIEW\/VIEW<br>Procesando el tipo de objeto SCHEMA_EXPORT\/TABLE\/INDEX\/INDEX<br>Procesando el tipo de objeto SCHEMA_EXPORT\/TABLE\/CONSTRAINT\/CONSTRAINT<br>Procesando el tipo de objeto SCHEMA_EXPORT\/TABLE\/CONSTRAINT\/REF_CONSTRAINT<br>Procesando el tipo de objeto SCHEMA_EXPORT\/TABLE\/TRIGGER<br>. . \"HR\".\"EMPLOYEES\"                            17.08 KB     107 filas exportadas<br>. . \"HR\".\"LOCATIONS\"                            8.437 KB      23 filas exportadas<br>. . \"HR\".\"JOB_HISTORY\"                          7.195 KB      10 filas exportadas<br>. . \"HR\".\"JOBS\"                                 7.109 KB      19 filas exportadas<br>. . \"HR\".\"JOBS1\"                                7.109 KB      19 filas exportadas<br>. . \"HR\".\"JOBS2\"                                7.109 KB      19 filas exportadas<br>. . \"HR\".\"DEPARTMENTS\"                          7.125 KB      27 filas exportadas<br>. . \"HR\".\"COUNTRIES\"                            6.007 KB       5 filas exportadas<br>. . \"HR\".\"REGIONS\"                              5.546 KB       4 filas exportadas<br>La tabla maestra \"SYSTEM\".\"SYS_EXPORT_SCHEMA_01\" se ha cargado\/descargado correctamente<br>******************************************************************************<br><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>8 -USO MULTIPLE DE QUERY<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Otro ejemplo es usar m\u00faltiples querys en el export. En este ejemplo se acota a los registros de la tabla HR.COUNTRIES donde se cumpla la condici\u00f3n <strong>REGION_ID=2<\/strong> y se acotan tambi\u00e9n los registros de la tabla HRDEST.COUNTRIES donde se cumple la condici\u00f3n <strong>REGION_ID=3<\/strong>.<\/p>\n\n\n\n<p class=\"has-cyan-bluish-gray-background-color has-background wp-block-paragraph\">expdp system\/**** dumpfile=export_query_example.dmp logfile=exp_query_example.log directory=export schemas=HR,HRDEST <strong>QUERY=HR.COUNTRIES:\\\u00bbWHERE\\ REGION_ID=2\\\u00bb QUERY=HRDEST.COUNTRIES:\\\u00bbWHERE\\ REGION_ID=3\\\u00bb<br><\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">[oracle@localhost ~]$ expdp system\/***** dumpfile=export_query_example.dmp logfile=exp_query_example.log directory=export schemas=HR,HRDEST<strong> QUERY=HR.COUNTRIES:\\\u00bbWHERE\\ REGION_ID=2\\\u00bb QUERY=HRDEST.COUNTRIES:\\\u00bbWHERE\\ REGION_ID=3\\\u00bb<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Export: Release 19.0.0.0.0 &#8211; Production on Wed Aug 19 15:12:27 2026<br>Version 19.3.0.0.0<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Copyright (c) 1982, 2019, Oracle and\/or its affiliates. All rights reserved.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Connected to: Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 &#8211; Production<br>Iniciando \u00abSYSTEM\u00bb.\u00bbSYS_EXPORT_SCHEMA_01&#8243;: system\/ dumpfile=export_query_example.dmp logfile=exp_query_example.log directory=export schemas=HR,HRDEST QUERY=HR.COUNTRIES:\u00bbWHERE REGION_ID=2&#8243; QUERY=HRDEST.COUNTRIES:\u00bbWHERE REGION_ID=3&#8243;<br>Procesando el tipo de objeto SCHEMA_EXPORT\/TABLE\/TABLE_DATA<br>Procesando el tipo de objeto SCHEMA_EXPORT\/TABLE\/INDEX\/STATISTICS\/INDEX_STATISTICS<br>Procesando el tipo de objeto SCHEMA_EXPORT\/TABLE\/STATISTICS\/TABLE_STATISTICS<br>Procesando el tipo de objeto SCHEMA_EXPORT\/STATISTICS\/MARKER<br>Procesando el tipo de objeto SCHEMA_EXPORT\/USER<br>Procesando el tipo de objeto SCHEMA_EXPORT\/SYSTEM_GRANT<br>Procesando el tipo de objeto SCHEMA_EXPORT\/ROLE_GRANT<br>Procesando el tipo de objeto SCHEMA_EXPORT\/DEFAULT_ROLE<br>Procesando el tipo de objeto SCHEMA_EXPORT\/TABLESPACE_QUOTA<br>Procesando el tipo de objeto SCHEMA_EXPORT\/PRE_SCHEMA\/PROCACT_SCHEMA<br>Procesando el tipo de objeto SCHEMA_EXPORT\/SEQUENCE\/SEQUENCE<br>Procesando el tipo de objeto SCHEMA_EXPORT\/TABLE\/TABLE<br>Procesando el tipo de objeto SCHEMA_EXPORT\/TABLE\/COMMENT<br>Procesando el tipo de objeto SCHEMA_EXPORT\/PROCEDURE\/PROCEDURE<br>Procesando el tipo de objeto SCHEMA_EXPORT\/PROCEDURE\/ALTER_PROCEDURE<br>Procesando el tipo de objeto SCHEMA_EXPORT\/VIEW\/VIEW<br>Procesando el tipo de objeto SCHEMA_EXPORT\/TABLE\/INDEX\/INDEX<br>Procesando el tipo de objeto SCHEMA_EXPORT\/TABLE\/CONSTRAINT\/CONSTRAINT<br>Procesando el tipo de objeto SCHEMA_EXPORT\/TABLE\/CONSTRAINT\/REF_CONSTRAINT<br>Procesando el tipo de objeto SCHEMA_EXPORT\/TABLE\/TRIGGER<br>. . \u00abHR\u00bb.\u00bbEMPLOYEES\u00bb 17.08 KB 107 filas exportadas<br>. . \u00abHRDEST\u00bb.\u00bbEMPLOYEES\u00bb 17.09 KB 107 filas exportadas<br>. . \u00abHR\u00bb.\u00bbLOCATIONS\u00bb 8.437 KB 23 filas exportadas<br>. . \u00abHRDEST\u00bb.\u00bbLOCATIONS\u00bb 8.437 KB 23 filas exportadas<br>. . \u00abHR\u00bb.\u00bbJOB_HISTORY\u00bb 7.195 KB 10 filas exportadas<br>. . \u00abHRDEST\u00bb.\u00bbJOB_HISTORY\u00bb 7.195 KB 10 filas exportadas<br>. . \u00abHR\u00bb.\u00bbJOBS\u00bb 7.109 KB 19 filas exportadas<br>. . \u00abHR\u00bb.\u00bbJOBS1&#8243; 7.109 KB 19 filas exportadas<br>. . \u00abHR\u00bb.\u00bbJOBS2&#8243; 7.109 KB 19 filas exportadas<br>. . \u00abHRDEST\u00bb.\u00bbJOBS\u00bb 7.109 KB 19 filas exportadas<br>. . \u00abHR\u00bb.\u00bbDEPARTMENTS\u00bb 7.125 KB 27 filas exportadas<br>. . \u00abHRDEST\u00bb.\u00bbDEPARTMENTS\u00bb 7.125 KB 27 filas exportadas<br>. . \u00abHR\u00bb.\u00bbCOUNTRIES\u00bb 6.007 KB 5 filas exportadas<br>. . \u00abHRDEST\u00bb.\u00bbCOUNTRIES\u00bb 6.007 KB 6 filas exportadas<br>. . \u00abHR\u00bb.\u00bbREGIONS\u00bb 5.546 KB 4 filas exportadas<br>. . \u00abHRDEST\u00bb.\u00bbREGIONS\u00bb 5.546 KB 4 filas exportadas<br>La tabla maestra \u00abSYSTEM\u00bb.\u00bbSYS_EXPORT_SCHEMA_01&#8243; se ha cargado\/descargado correctamente<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>NOTA IMPORTANTE:<\/strong> Siempre que tengas que usar comillas o m\u00faltiples valores\/opciones en los par\u00e1metros de tu export (<code>EXCLUDE<\/code>, <code>INCLUDE<\/code>, <code>QUERY<\/code>, etc.), es muy recomendable usar un <strong>parfile<\/strong>, para evitar problemas de interpretaci\u00f3n por parte del shell y de la herramienta <code>expdp<\/code>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>En esta entrada vamos a ver varios casos con export que pueden ser de gran utilidad. En muchas ocasiones, nos encontramos con la necesidad de excluir objetos en nuestro export o filtrar datos espec\u00edficos en nuestro expd, usamos los par\u00e1metros EXCLUDE (omitir objetos) o QUERY (filtrar los registros a exportar). Vamos a utilizar el esquema<\/p>\n<div class=\"more-link\">\n\t\t\t\t <a href=\"https:\/\/oracleconraul.com\/index.php\/2026\/08\/19\/oracle-data-pump-tecnicas-practicas-de-exportacion-e-importacion-utilizando-exclude-y-query\/\" class=\"link-btn theme-btn\"><span>Leer M\u00e1s <\/span> <i class=\"fa fa-caret-right\"><\/i><\/a>\n\t\t\t<\/div>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"wpupg_custom_link":[],"wpupg_custom_link_behaviour":[],"wpupg_custom_link_nofollow":[],"wpupg_custom_image":[],"wpupg_custom_image_id":[],"_monsterinsights_skip_tracking":false,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"footnotes":""},"categories":[14],"tags":[15],"class_list":["post-6435","post","type-post","status-publish","format-standard","hentry","category-oracle","tag-rdbmsoracle"],"_links":{"self":[{"href":"https:\/\/oracleconraul.com\/index.php\/wp-json\/wp\/v2\/posts\/6435","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/oracleconraul.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/oracleconraul.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/oracleconraul.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/oracleconraul.com\/index.php\/wp-json\/wp\/v2\/comments?post=6435"}],"version-history":[{"count":74,"href":"https:\/\/oracleconraul.com\/index.php\/wp-json\/wp\/v2\/posts\/6435\/revisions"}],"predecessor-version":[{"id":6523,"href":"https:\/\/oracleconraul.com\/index.php\/wp-json\/wp\/v2\/posts\/6435\/revisions\/6523"}],"wp:attachment":[{"href":"https:\/\/oracleconraul.com\/index.php\/wp-json\/wp\/v2\/media?parent=6435"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/oracleconraul.com\/index.php\/wp-json\/wp\/v2\/categories?post=6435"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/oracleconraul.com\/index.php\/wp-json\/wp\/v2\/tags?post=6435"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}