Nishtha Thakur has Published 577 Articles

The contains() method of the Java Ennead Tuple

Nishtha Thakur

Nishtha Thakur

Updated on 30-Jul-2019 22:30:25

44 Views

The contains() method of the Ennead Tuple in Java is used to search for a value in the Tuple. To find the existence of a value, you need to just set it as a parameter of the method. It returns a boolean value i.e. TRUE is returned for the existence ... Read More

How to efficiently perform “distinct” with multiple keys in MongoDB?

Nishtha Thakur

Nishtha Thakur

Updated on 30-Jul-2019 22:30:25

278 Views

You can perform distinct with multiple keys with the help of an aggregate framework.To understand the concept, let us create a collection with the document. The query to create a collection with a document is as follows −> db.distinctWithMultipleKeysDemo.insertOne({"StudentName":"Mike", "StudentAge":22, "StudentMathMarks":56}); {    "acknowledged" : true,    "insertedId" : ObjectId("5c7f74488d10a061296a3c53") ... Read More

What is the difference between C++0x and C++11?

Nishtha Thakur

Nishtha Thakur

Updated on 30-Jul-2019 22:30:22

290 Views

C++ and C Standards are usually named after the year they are published in. For example, in C++, the original Standard was published in 1998, so it is called C++98, and its first correction, published in 2003 is called C++03.For the next revision, it was supposed that the next Standard ... Read More

What do you mean by C++ Tokens?

Nishtha Thakur

Nishtha Thakur

Updated on 30-Jul-2019 22:30:21

2K+ Views

A token is the smallest element of a C++ program that is meaningful to the compiler. The C++ parser recognizes these kinds of tokens: identifiers, keywords, literals, operators, punctuators, and other separators. A stream of these tokens makes up a translation unit. Tokens are usually separated by white space.The parser ... Read More

Architecture for Deploying SAP HR module

Nishtha Thakur

Nishtha Thakur

Updated on 30-Jul-2019 22:30:20

61 Views

It would be good to separate the HR from other modules as not only the load and usage is high on HRmodule but the business and security requirements differ for HR module as well.In such scenarios, other module can be customized in terms of security and configured as per theirneeds. ... Read More

Learning SAP HANA and scope with ABAP-HANA or BI-HANA

Nishtha Thakur

Nishtha Thakur

Updated on 30-Jul-2019 22:30:20

182 Views

While you have a valid point that most of the SAP HANA projects are coupled with varied SAP landscape but there does exists a lot of projects which involve only native SAP HANA development.It entirely depends on your interests and knowledge base but sound understanding of the core concepts around ... Read More

Connecting to SAP HANA server on Cloud using PHP

Nishtha Thakur

Nishtha Thakur

Updated on 30-Jul-2019 22:30:20

277 Views

To get the server name of SAP HANA server, you need to check the virtual machine (VM) list.You can find this list under Virtual machine details of your corresponding HANA SPS5 server’s External Address property.Usually, the port number is 30015.For the problem that you are facing regarding the connection set ... Read More

Advertisements