Like what you see? Have a play with our trial version.

Error rendering macro 'rw-search'

null

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Updated to include legacy PDF stuff.

Table of Contents
classcontents

Overview

In addition to the UI configuration options within Yellowfin, a number of SQL-provoked settings exist, outlined below.

Enforce a global language

...

Code Block
INSERT INTO Configuration VALUES (1, "SYSTEM", "OVERRIDE_LANGUAGE", "zh_CN");

In this sample, “zh_CN” refers to the Java language locale code for the language you wish to enforce.

Also in this sample, 1 denotes the primary/default organization. This is a system-wide setting that cannot be enabled for specific client organizations; Therefore, this value must always be set to 1.


Anchor
disableurltitle
disableurltitle

...

Code Block
INSERT INTO Configuration(IpOrg, ConfigTypeCode, ConfigCode, ConfigData) values(<IP_org>, 'SYSTEM', 'REPORTLOWMEMORYEXPORT', 'ON');

Remember to set your value for <IP_org> to either the primary org (1) or a client org.


Disable outer join check

During the creation of views, you can configure outer joins to be treated as inner joins when creating View relationships in the database.

...

In this sample, 1 signifies the primary/default organization.

Anchor
legacypdf
legacypdf

Force Yellowfin to use legacy RC4 128 PDF encryption

When set to TRUE, this forces Yellowfin to use legacy RC4 128-bit encryption for PDFs rather than the default  of AES 256-bit encrypted PDFs.

Use the following SQL to do so:

INSERT INTO Configuration VALUES (1, 'SYSTEM', 'USELEGACYPDFENCRYPTION', 'TRUE');

In this sample, 1 signifies the primary/default organization.