Checking Topology of SAP HANA

SAP ABAP Expert
Updated on 18-Jun-2020 07:42:40

926 Views

The topology of SAP HANA system is maintained by Name Server. This is used to manage all the running components and data stored in each component.

Align Flex Items Right in Bootstrap 4

Amit Diwan
Updated on 18-Jun-2020 07:38:39

121 Views

To show flex items on the right, horizontal on specific screen sizes, use the flex-*-row-reverse class in Bootstrap 4.Let us see how to set reverese flex items on different screen sizes −Small Screen Size: flex-sm-row-reverse Medium Screen Size: flex-md-row-reverse Large Screen Size: flex-lg-row-reverseYou can try to run the following code to display reverse flex items on different screen sizes −ExampleLive Demo       Bootstrap Example                                   Flex Row               ONE         TWO         THREE             Flex Row Reverse               ONE         TWO         THREE             Flex Row Reverse (Small Width)                 ONE         TWO         THREE             Flex Row Reverse (Medium Width)               ONE         TWO         THREE             Flex Row Reverse (Large Width)               ONE         TWO         THREE          

Align Flex Item at the End on Different Screens in Bootstrap 4

Alex Onsman
Updated on 18-Jun-2020 07:31:46

164 Views

Use the .align-self-*-end class in Bootstrap 4 to align a flex item at the end on different screens in Bootstrap 4.For specific screen size, align the flex item like the below given code snippets −Small Screen Size   Item 1   Item 2   Item 3   Item 4 Large Screen Size   Item 1   Item 2   Item 3     Item 4 You can try to run the following code to align flex item at the end on specific screen sizes −ExampleLive Demo       Bootstrap Example           ... Read More

Allow Wrapping of Flex Items in Bootstrap on Different Screens

Alex Onsman
Updated on 18-Jun-2020 07:29:27

1K+ Views

To allow wrapping of flex items on different screens, use the flex-*-wrap class. The flex-wrap for varied screen sizes work for small, medium, large and extra large screens.For example, use the flex-lg-wrap class to wrap flex items on large screen −For small screen −You can try to run the following code to implement the flex-*-wrap class to wrap flex items on small and large screen size −ExampleLive Demo       Bootstrap Example                                       ... Read More

Bootstrap 4 Flex Row Class

Amit Diwan
Updated on 18-Jun-2020 07:27:40

314 Views

Use the flex-row class in Bootstrap to dispay flex items horizontally.Achieve the following using the flex-row class −Now add the flex-items in the class to allow horizontal alignment −   Audi   BMW   Benz You can try to run the following code to implement the flex-row class −ExampleLive Demo       Bootstrap Example                             Flex Row          Audi      BMW      Benz      

Manual Compression of a Table in SAP HANA

John SAP
Updated on 18-Jun-2020 07:27:31

1K+ Views

It is also possible to compress a table in SAP HANA system manually by executing the following SQL statement.UPDATE "table_name" WITH PARAMETERS ('OPTIMIZE_COMPRESSION' = 'YES')This results in deciding whether a compression is required or an existing compression can be optimized. In this scenario, HANA system uses most suitable compression algorithm.When you run the above SQL command, compression status remains the same. You can also force the database to reevaluate compression using the following SQL status UPDATE "AA_HANA11"."SHOP_FACTS" WITH PARAMETERS ('OPTIMIZE_COMPRESSION' = 'FORCE')

Toggle Bootstrap Modal

Amit Diwan
Updated on 18-Jun-2020 07:25:35

517 Views

Use the .modal(“toggle”) method in Bootstrap to toggle the modal.On button click, the modal generates using the modal(“toggle”) method −$(document).ready(function(){   $("#button1").click(function(){     $("#newModal").modal("toggle");   }); });The button is set here using the following code snippet −   Modal One You can try to run the following code to implement the modal(“toggle”) method −ExampleLive Demo       Bootstrap Example                             Sample     Modal One                                         ×             Sample Modal                             Click outside to close it.                           Close                       $(document).ready(function(){     $("#button1").click(function(){       $("#newModal").modal("toggle");     });   });

SAP HANA Row and Column Store Table

SAP Developer
Updated on 18-Jun-2020 07:24:39

2K+ Views

SAP HANA Modeler Views can only be created on the top of Column based tables. Storing data in Column tables is not a new thing. Earlier it was assumed that storing data in Columnar based structure takes more memory size and not performance Optimized.With the evolution of SAP HANA, HANA used column-based data storage in Information views and presented the real benefits of columnar tables over Row based tables.Column StoreIn a Column store table, Data is stored vertically. So, similar data types come together as shown in the example above. It provides faster memory read and writes operations with help ... Read More

Bootstrap 4 Card Footer Class

Amit Diwan
Updated on 18-Jun-2020 07:23:31

1K+ Views

Use the card-footer class in Bootstrap 4 to set the footer of a Bootstrap card.Add it using the class −   Add footer message here The card-footer class comes after the card-header and card-body class −   Details   Timings: 4PM - 8PM   Reach before 4PM You can try to run the following code to implement the card-footer class −ExampleLive Demo       Bootstrap Example                             Conference           Details       Timings: 4PM - 8PM       Reach before 4PM      

Difference Between equals and compareTo in Java

Rama Giri
Updated on 18-Jun-2020 07:22:14

3K+ Views

The compareTo() method compares two strings lexicographically. The comparison is based on the Unicode value of each character in the strings. The character sequence represented by this String object is compared lexicographically to the character sequence represented by the argument string.The result is a negative integer if this String object lexicographically precedes the argument string. The result is a positive integer if this String object lexicographically follows the argument string. The result is zero if the strings are equal, compareTo returns 0 exactly when the equals(Object) method would return true.ExampleLive Demopublic class StringDemo {    public static void main(String[] args) {   ... Read More

Advertisements