Maximum Number of Columns in a Table in SAP HANA

SAP Developer
Updated on 12-Mar-2020 10:15:15

1K+ Views

The maximum number of columns in a table is 1000.

Common Locale Data Repository (CLDR) in Java 9

raja
Updated on 12-Mar-2020 10:15:10

562 Views

Internationalization enhancements for Java 9 include enabling of CLDR Locale Data by Default.There are four distinct sources for locale data identified by using the below keywords:CLDR: The locale data provided by a Unicode Common Locale Data Repository (CLDR) project.HOST: The current user’s customization of an underlying operating system’s settings. Depending on the operating system, formats like date, time, number, and currency can be supported.SPI: The locale-sensitive services implemented in installed SPI providers.COMPAT (JRE): The locale data that is compatible with releases prior to Java 9. The JRE can still be used as a value but deprecated, and removed in the future.In Java ... Read More

Maximum Table Name Length in SAP HANA

SAP ABAP Expert
Updated on 12-Mar-2020 10:12:19

1K+ Views

Maximum table name length supported in SAP HANA is 127 characters.

Maximum Table Count in a Schema in SAP HANA

SAP Expert
Updated on 12-Mar-2020 10:11:37

501 Views

In SAP HANA, a maximum number of tables in a schema are 131072. To create a table, you have to right click on Schema name → New Table

Find the 3rd Smallest Number in a Java Array

Kumar Varma
Updated on 12-Mar-2020 10:10:40

5K+ Views

ExampleFollowing is the required program.Live Demopublic class Tester {    public static int getThirdSmallest(int[] a) {       int temp;       //sort the array       for (int i = 0; i < a.length; i++) {          for (int j = i + 1; j < a.length; j++) {             if (a[i] > a[j]) {                temp = a[i];                a[i] = a[j];                a[j] = temp;             }          }       }       //return third smallest element       return a[2];    }    public static void main(String args[]) {       int a[] = { 11,10,4, 15, 16, 13, 2 };       System.out.println("Third Smallest: " +getThirdSmallest(a));    } }OutputThird smallest: 10

Different Types of Calculation Views in SAP HANA

SAP Expert
Updated on 12-Mar-2020 10:08:22

727 Views

In SAP HANA, you can create a Graphical Calculation view or SQL script based view. The graphical view is easy to develop and you don’t require to be an expert in SQL scripting.When you create a Calculation View, we get an option which type of view we want to create. It is recommended that you should prefer to Graphical Calculation views as you can easily achieve parallel processing and other performance benefits associated with HANA.To create a Calculation view- SQL Script or Graphical view, you have to go to a package and right click → New → Calculation ViewSelect Type ... Read More

Using an Analytic Privilege for Specific Time in SAP HANA

SAP Expert
Updated on 12-Mar-2020 08:18:46

170 Views

Yes, when an Analytic Privilege is defined you have an option of using it for a specific time period. You have an option of defining Privilege validity where you can pass validity details.You can also opt for SQL Editor or Dynamic where you can pass different validity conditions. When you use SQL option you can pass a SQL query and it will be set as per SQL queryFor Dynamic option, you can pass Stored Procedure to define validity.

Adding Multiple Views in SAP HANA Analytic Privilege

SAP ABAP Expert
Updated on 12-Mar-2020 08:16:49

393 Views

Yes, you can define Analytic Privilege for multiple views in a single object. When you add multiple HANA views, you can find all Attributes: Select attributes to assign analytic privileges.

New Versioning Scheme in Java 9

raja
Updated on 12-Mar-2020 08:15:26

656 Views

Since Java 9, versioning can be consistent with semantic versioning. The version number can be a non-empty sequence of strings separated by dots. It contains three major parts: major version number, minor version number, and security. The new versioning scheme has documented in Runtime. Version class and version information can be accessed from it.The version numbers have the below format:$MAJOR.$MINOR.$SECURITY(.$otherpart)?$MAJOR is the major version number and incremented when a major version has released that typically changes the platform specification. For JDK 9, this value is 9.$MINOR is the minor version number and incremented for releases that contain bug fixes and enhancements to ... Read More

Key Characteristics of Using Analytic Privilege in SAP HANA Modeling

SAP Developer
Updated on 12-Mar-2020 08:15:08

205 Views

Analytic Privilege is created inside packages under Content tab.Analytic Privileges are only applied to attributes in an Information View. We cannot add measures to restrict access to Analytic privileges.Analytic Privileges are used to control read access to SAP HANA Information views. You can also hide an information from the specific time period.

Advertisements