What is TNS File
Answers were Sorted based on User's Feedback
Answer / s.gousalya
TNS stands for TRANSPARENT NETWORK SUBSTRATE.
it is sql*net configuration file that defines datbases
address for establishing connection to them.
| Is This Answer Correct ? | 75 Yes | 6 No |
Answer / saravana pandian
it is sql*net configuration file, that is used to define
datbases address for establishing connection to them.
| Is This Answer Correct ? | 38 Yes | 5 No |
Answer / suvendu boity
TNS stands for Transparent Network Substrate.it means that's the software Oracle uses to manage connections usuing this TNS.
| Is This Answer Correct ? | 20 Yes | 5 No |
Answer / kumar
transparent network substrate for establishing connection
to them.
| Is This Answer Correct ? | 15 Yes | 4 No |
Answer / noor alam
It stands for Transparent Network Substrate. which is mainly responsible for connection with the oracle engine.
| Is This Answer Correct ? | 9 Yes | 3 No |
Answer / naresh kumar
Transparent Network Substrate (TNS) is an Oracle computer networking technology that allows peer-to-peer connectivity where no machine-level connectivity can occur. It provides a user-transparent layer that enables a heterogeneous network consisting of different protocols to function as a homogeneous network. TNS forms a transparent layer to which different network protocols can connect. It provides a network of applications above the existing networks of computers.
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / shrikant
TNS (Transparent Network Substrate) is Oracle's networking
architecture. TNS provides a uniform application interface
to enable network applications to access the underlying
network protocols transparently.
| Is This Answer Correct ? | 4 Yes | 0 No |
How to create id with auto_increment on oracle?
How to store only time; not date and time?
> CREATE OR REPLACE FUNCTION FACTORIAL_1(factstr varchar2 ) 2 RETURN NUMBER AS 3 new_str VARCHAR2(4000) := factstr||'*' ; 4 fact number := 1 ; 5 BEGIN 6 7 WHILE new_str IS NOT NULL 8 LOOP 9 fact := fact * TO_NUMBER(SUBSTR(new_str,1,INSTR(new_str,'*')-1)); 10 new_str := substr( new_str,INSTR(new_str,'*')+1); 11 END LOOP; 12 13 RETURN fact; 14 15 END; explanation Above program?
How to recover a dropped index?
What are the different types of partitions in oracle?
Explain the dml?
What is the sid in oracle?
what is primary key?
how can we store any pdf file in oracle
What are the restrictions on external table columns?
I have a database backup file in .db (ext) form how to conver it into .dmp (ext.) for oracle database
How to assign values to variables?