When This Clause Is Used With The DROP Command, A Parent Table Can Be Dropped Even When A Child Table Exists
When This Clause Is Used With The DROP Command, A Parent Table Can Be Dropped Even When A Child Table Exists
A .dbc file has the information required for Ab Initio to connect to the database to extract or load tables
or views. While .CFG file is the table configuration file created by db_config while using components like
Load DB Table.
What is the function you would use to transfer a string into a decimal?
For converting a string to a decimal we need to typecast it using the following syntax,
The above statement converts the string to decimal and populates it to the decimal field in output. Can
we override a native sql query within Informatica? Where do we do it? How do we do it?
Yes,we can override a native sql query in source qualifier and lookup transformation.
In lookup transformation we can find "Sql override" in lookup properties.by using this option we can do
this.
1200.
Which function is used to find the largest integer less than or equal to a specific value?
FLOOR.
When this clause is used with the DROP command, a parent table can be dropped even when a
child table exists.
What is the use of DESC in SQL?
DESC has two purposes. It is used to describe a schema as well as to retrieve rows from table in
descending order.
Explanation :
The query SELECT * FROM EMP ORDER BY ENAME DESC will display the output sorted
on ENAME in descending order.
DESC has two purposes. It is used to describe a schema as well as to retrieve rows from table in
descending order.
Explanation :
The query SELECT * FROM EMP ORDER BY ENAME DESC will display the output sorted
on ENAME in descending order.
What is the value of comm and sal after executing the following query if the initial value
of ?sal? is 10000
UPDATE EMP SET SAL = SAL + 1000, COMM = SAL*0.1;
What is the use of the DROP option in the ALTER TABLE command?
What is the advantage of specifying WITH GRANT OPTION in the GRANT command?
The privilege receiver can further grant the privileges he/she has obtained from the owner to any
other user.
Variable names should start with an alphabet. Here the table name starts with an '&' symbol.
Any table name must start with alphabet. Table names starting with special characters are
considered to be invalid hence give error.
Which date function is used to find the difference between two dates?
MONTHS_BETWEEN.
This displays the total salary of all employees. The null values in the commission column will be replaced
by 0 and added to salary.
NO.
Explanation :
The query checks whether a given string is a numerical digit.
I have query regarding this. I guess the Translate part will give the result as 1111111111, and its
a numerical digit.So answer should be Yes.
plz correct me , if I am wrong.
What command is used to create a table by copying the structure of another table?