Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
janezhang401
Contributor
Contributor

Qlik Replicate Select ALL Tables in a Database

From UI, it is easy to select all tables.

However, if I manually input a json task file, is there a way to define migrating all tables? Instead of adding a list of tables to "explicit_included_tables"?

Labels (2)
1 Solution

Accepted Solutions
Heinvandenheuvel
Specialist II
Specialist II

It is essentially just an 'include *'. 

If unsure about the syntax just use the GUI to set it up and export task to see the result.

No need to list all tables.

Hein

...
"source":	{
  "rep_source":	{
    "source_name":	"Oracle_Source",
    "database_name":	"Oracle_Source"
    },
  "source_tables":	{
    "name":	"Oracle_Source",
    "included_pattern":	[{
	"owner":	"ATT_USER",
	"name":	"%"
	}]
    }
},
"targets":	[{  ...

View solution in original post

1 Reply
Heinvandenheuvel
Specialist II
Specialist II

It is essentially just an 'include *'. 

If unsure about the syntax just use the GUI to set it up and export task to see the result.

No need to list all tables.

Hein

...
"source":	{
  "rep_source":	{
    "source_name":	"Oracle_Source",
    "database_name":	"Oracle_Source"
    },
  "source_tables":	{
    "name":	"Oracle_Source",
    "included_pattern":	[{
	"owner":	"ATT_USER",
	"name":	"%"
	}]
    }
},
"targets":	[{  ...