How will restrict values in 0-9 and A-Z and a-z and special
character.Only allowed these chars otherwise we will reject
the records? what is the function we used to restrict...

Answers were Sorted based on User's Feedback



How will restrict values in 0-9 and A-Z and a-z and special character.Only allowed these chars oth..

Answer / ankit

Do it in Unix shell script . Search through "grep" for value
between [0-9] [A-Z] & other criteria .If condition doesn't
satisfy.U can pass a parameter stating invalid.

Is This Answer Correct ?    2 Yes 0 No

How will restrict values in 0-9 and A-Z and a-z and special character.Only allowed these chars oth..

Answer / abhishek

REGEXP_LIKE(COL_NAME,'[[:alphanum:]]')

Is This Answer Correct ?    0 Yes 0 No

How will restrict values in 0-9 and A-Z and a-z and special character.Only allowed these chars oth..

Answer / babu

Hi,
As per my knowledje,i find below method for u r query.

select * from tab where col1 between 'A' and 'Z' or col1
between 'a' and 'z' or col1 between '0' and '9'

please let me know,if u have any concerns.

Babu

Is This Answer Correct ?    5 Yes 8 No

Post New Answer

More Informatica Interview Questions

What are the different lookup cache(s)?

0 Answers  


What is data transformation manager process?

0 Answers  


what are all the deliverables of ETL informatica power center project? what are all updated or created by etl developer as his everyday activities?

0 Answers  


Which development components of informatica have the highest usage?

0 Answers  


Can anyone guide me the steps to install informatica PC 8.5.1 with database as oracle

1 Answers  






Source is a flat file and want to load unique and duplicate records separately into two separate targets; right??

4 Answers  


how to import multiple flat files in to single target where there is no common column in the flat files

2 Answers   TCS,


Which kind of index is preferred in DWH?

3 Answers  


what r the transformations that r not involved in mapplet?

8 Answers   Wipro,


Hey I am net to informatica? Can any one explain me step by step How scd will work ?

1 Answers   Infosys,


Different types of Power center errors?

1 Answers   Cinterco, IBM,


Consider a Phone Log table as below. It records all phone numbers that we dial in a given day. SOURCE_PHONE_NUMBER DESTINATION_PHONE_NUMBER CALL_START_DATETIME 1234 4567 01/07/2011 10:00 1234 2345 01/07/2011 11:00 1234 3456 01/07/2011 12:00 1234 3456 01/07/2011 13:00 1234 4567 01/07/2011 15:00 1222 7890 01/07/2011 10:00 1222 7680 01/07/2011 12:00 1222 2345 01/07/2011 13:00 Please provide an SQL query to display the source_phone_number and a flag where the flag needs to be set to Y if first called number and last called number are the same and N if the first called number and last called number are different. Desired Output: Source Number Is_Match 1222 N 1234 Y

2 Answers   Amazon,


Categories