Limitations of SAP HANA Compared to Conventional Databases

SAP Expert
Updated on 22-Jun-2020 08:58:12

249 Views

Following are the key limitations that HANA overcomes −As data size is growing it is a big problem for companies to store huge amounts of data. You talk about any industry domain- healthcare, FMCG, Banking, and Insurance, as subscribers are increasing there is an increase in historical data with time. SAP HANA Column base storage allows data compression and hence reducing the cost of storing the data.As data size is growing it is a huge problem for companies to maintain and analyze the historical data. A conventional database doesn’t provide a mechanism to process large volumes of data. With an ... Read More

Lifecycle and States of a Thread in C#

Ankith Reddy
Updated on 22-Jun-2020 08:57:53

587 Views

Threads are lightweight processes. Each thread defines a unique flow of control. The life cycle of a thread starts when an object of the System.Threading.Thread class is created and ends when the thread is terminated or completes execution.Here are the various states in the life cycle of a thread −The Unstarted StateIt is the situation when the instance of the thread is created but the Start method is not called.The Ready StateIt is the situation when the thread is ready to run and waiting CPU cycle.The Not Runnable StateA thread is not executable, whenSleep method has been calledWait method has been ... Read More

Read a Line from the Console in C#

Samual Sam
Updated on 22-Jun-2020 08:56:44

2K+ Views

The ReadLine() method is used to read a line from the console in C#.str = Console.ReadLine();The above will set the line in the variable str.Example Live Demousing System; using System.Collections.Generic; class Demo {    static void Main() {       string str;       // use ReadLine() to read the entered line       str = Console.ReadLine();       // display the line       Console.WriteLine("Input = {0}", str);    } }OutputInput =Above, we displayed a line using the Console.ReadLine() method. The string is entered by the user from the command line.

Defining User Lock Settings in SAP HANA

SAP ABAP Expert
Updated on 22-Jun-2020 08:56:20

519 Views

Yes, new for SPS7 is the Lock indefinitely radio button −

Convert List of Characters into String in C#

karthikeya Boyini
Updated on 22-Jun-2020 08:55:42

356 Views

Firstly, set the characters.char[] arr = new char[5]; arr[0] = 'Y'; arr[1] = 'E'; arr[2] = 'S';Now, convert them into string.string res = new string(arr);The following is the complete code to convert a list of characters into a string −Example Live Demousing System; class Program {    static void Main() {       char[] arr = new char[5];       arr[0] = 'Y';       arr[1] = 'E';       arr[2] = 'S';       // converting to string       string res = new string(arr);       Console.WriteLine(res);    } }OutputYES

Enabling Audit Policy in SAP HANA

SAP ABAP Expert
Updated on 22-Jun-2020 08:55:37

351 Views

To enable Audit policy, navigate to Security tab → AuditingUnder Auditing, you need to enable Auditing policy as shown below −

Configuring Blacklist in Password Policy in SAP HANA

SAP ABAP Expert
Updated on 22-Jun-2020 08:55:12

385 Views

This can be done under a Blocked password option under the password management policy. Below shows SAP HANA cockpit snapshot −

Read Inputs as Strings in C#

Chandu yadav
Updated on 22-Jun-2020 08:55:10

9K+ Views

To read inputs as strings in C#, use the Console.ReadLine() method.str = Console.ReadLine();The above will read input as string. You don’t need to use the Convert method here since the input takes string by default.Now display the string entered by user −Example Live Demousing System; using System.Collections.Generic; class Demo {    static void Main() {       string myStr;       // use ReadLine() to read the entered line       myStr = Console.ReadLine();       // display the line       Console.WriteLine("Result = {0}", myStr);    } }OutputResult =The following is the output. Let’s say the user entered “Amit” as the input −Result = amit

Remove Item from a Chash List Using an Index

Samual Sam
Updated on 22-Jun-2020 08:54:42

13K+ Views

To remove an item from a list in C# using index, use the RemoveAt() method.Firstly, set the list −List list1 = new List() {    "Hanks",    "Lawrence",    "Beckham",    "Cooper", };Now remove the element at 2nd position i.e. index 1list1.RemoveAt(1);Let us see the complete example −Example Live Demousing System; using System.Collections.Generic; using System.Linq; class Program {    static void Main() {       List list1 = new List() {          "Hanks",          "Lawrence",          "Beckham",          "Cooper",       };       ... Read More

Configuring Password Policy and Blacklist in SAP HANA Studio

SAP ABAP Expert
Updated on 22-Jun-2020 08:54:17

561 Views

Following privileges are required −You need to have the system privilege INIFILE ADMIN.You need to have the object privileges SELECT, INSERT, and DELETE for the _SYS_PASSWORD_BLACKLIST table (_SYS_SECURITY).

Advertisements