Articles on Trending Technologies

Technical articles with clear explanations and examples

What are the drawbacks of using test database?

Sai Subramanyam
Sai Subramanyam
Updated on 30-Jul-2019 297 Views

There is a database named test in the list of databases displayed by the statement SHOW DATABASES. We can use test database but the main disadvantage is that anything created in this database can be removed/changed by anyone else with access to it. To avoid this we should take permission from MySQL administrator to use a database of our own. For taking permission following command must be run − mysql> grant all on tutorial.* to root@localhost; Query OK, 0 rows affected (0.10 sec) In the above command, I am taking permission for the tutorial database. Root is the ...

Read More

Use of SAP Host Agent in SAP HANA

John SAP
John SAP
Updated on 30-Jul-2019 1K+ Views

To manage software updates and patch management in HANA system environment, you should install SAP Host Agent on all the machines that are part of SAP system landscape. SAP Host Agent is used by Software Update Manager to install the software patches on all the component servers in your system landscape.

Read More

In MySQL, why a client cannot use a user-defined variable defined by another client?

Sreemaha
Sreemaha
Updated on 30-Jul-2019 376 Views

In MySQL, a user-defined variable defined by one client cannot be seen or used by another client because user-defined variables are connection-specific. It means that all variables for a given client connection are automatically freed when that client exits

Read More

How Can we permanently define user-defined variable for a client in MySQL?

Anvi Jain
Anvi Jain
Updated on 30-Jul-2019 389 Views

In MySQL, it is not possible that a client can hold user variable permanently. It is because all the variables for a given client connection are automatically freed when that client exits.

Read More

Using LM Structure in SAP HANA environment

John SAP
John SAP
Updated on 30-Jul-2019 357 Views

LM structure in SAP HANA system landscape is used to manage installation details of all the components under HANA. LM structure information helps to manage software updates and patches. The information with LM structure is used by Software Update Manager SUM to install the software updates and new releases in HANA environment.

Read More

Use of SAP HANA Repository to maintain objects

John SAP
John SAP
Updated on 30-Jul-2019 603 Views

This is used to update versions of HANA Studio to newer versions. Studio Repository maintains the code to perform updates for HANA Studio.All the objects that you develop are maintained in Packages which are maintained under SAP HANA Repository. These packages are arranged in the form of hierarchy to make them easy to understand and logical.

Read More

How can I update MySQL table after quoting the values of a column with a single quote?

Sai Subramanyam
Sai Subramanyam
Updated on 30-Jul-2019 936 Views

As we know that with the help of QUOTE() function we can put the values of a column in single quotes. By using QUOTE() function with UPDATE clause we can update the table having quoted values. We need to give column name as the parameter of QUOTE() function. Following example will update the table ‘examination_btech’ after putting the values of column ‘Course’ in single quotes. Example mysql> UPDATE examination_btech SET Course = QUOTE(Course); Query OK, 10 rows affected (0.05 sec) mysql> Select * from examination_btech; +--------+----------+----------+ | RollNo | Name | Course ...

Read More

How to get the list of tables in default MySQL database?

George John
George John
Updated on 30-Jul-2019 575 Views

As we know that the default MySQL database would be the database that is currently in use for subsequent queries. We can get the list of tables in that database by using SHOW TABLES statement. mysql> SHOW TABLES; +------------------+ | Tables_in_sample | +------------------+ | employee | | new_student | | student | +------------------+ 3 rows in set (0.00 sec) The above statement shows the list of table in Sampledatabase.

Read More

SQL Operation supported in SAP HANA SPS06 SDA

John SAP
John SAP
Updated on 30-Jul-2019 304 Views

With use of SAP HANA SPS06 Smart Data Access, you can only perform SELECT operation on virtual tables moved using new remote data source.

Read More

Difference between StringBuffer and StringBuilder.

Akshaya Akki
Akshaya Akki
Updated on 30-Jul-2019 1K+ Views

The StringBuffer and StringBuilder classes are used when there is a necessity to make a lot of modifications to Strings of characters.Unlike Strings, objects of type StringBuffer and String builder can be modified over and over again without leaving behind a lot of new unused objects.The StringBuilder class was introduced as of Java 5 and the main difference between the StringBuffer and StringBuilder is that StringBuilder’s methods are not thread safe (not synchronized).It is recommended to use StringBuilder whenever possible because it is faster than StringBuffer. However, if the thread safety is necessary, the best option is StringBuffer objects.

Read More
Showing 61021–61030 of 61,299 articles
Advertisements