The UTL_FILE package provides that support in Oracle 9i. Oracle 11g supports a new feature known as Oracle External Tables (OET), which has many advantages over UTL_FILE, though OET can't replace all the functionality in UTL_FILE (yet).
Do man cp from shell $ man cp
The rm command is used to delete a file or directory. Its syntax isrm file or rm -r directoryExample:rm myfilerm -r /home/user/mystuff
I AM USING ORACLE 8i ,D2K 6i how to output file txt file to pdf automaticall generated please helpme xx
fgetc gets a character from a file using a file pointer.the syntax is fget(fp) where fp is a pointer to the file
use the chmod command syntax: chmod #### -option1 -option2 filename man chmod (for more information)
Mat lab has got a predefined command for this purpose. The command is 'imread'. Syntax: A = IMREAD(FILENAME,FMT) It reads a grayscale or color image from the file specified by the string FILENAME. If the file is not in the current directory, or in a directory on the MATLAB path, specify the full pathname.
using touch command of UNIX. syntax touch <filename> will create dummy regular file.
You can get a list of all the files in the current directory with the "ls -a" command.
To extract the contents of a JAR file like tools.jar, you can use the jar command or unzip. Using the jar command, the syntax is: jar xf tools.jar Alternatively, you can use the unzip command: unzip tools.jar Both commands will extract the contents of the JAR file into the current directory.
No it will not. Any java source file that has syntax errors will not be translated fully. The compiler will spit out errors based on the syntax problems in your code.
To export the entire database to a single file dba.dmp in the current directory. - Login to server exp SYSTEM/password FULL=y FILE=dba.dmp LOG=dba.log CONSISTENT=y
The mv command is used to move a file or directory to another location. Its syntax ismv target destinationFor example:mv myfile /home/user/mystuff