Making .tar.gz from .tar file in linux

i had a doubt as to how to create a .tar.gz file from a .tar file in linux as i wanted to take the back-up of the export of Oracle. Please, help in solving the doubt.
regards

It's the gzip command:
http://linux.about.com/od/commands/l/blcmdl1_gzip.htm
Also note that Oracle Database 10g provides the new UTL_COMPRESS
package to compress and uncompress data, with the compressed output compatible with the output of the familiar GZIP and GUNZIP compression utilities.
Hope this helps. . .
Donald K. Burleson
Oracle Press author
Author of "Oracle Tuning: The Definitive Reference":
http://www.dba-oracle.com/bp/s_oracle_tuning_book.htm

Similar Messages

  • Making a "book" from single files

    I need help on making a "book" or a single file from multi files. I made single files for a manual but don't know how to make them all into one file, can anyone help me out with this one?
    Thanks!
    Stephanie
    [email protected]

    File > New > Book
    And then from the Book window flyout menu, Add Document...
    Kenneth Benson
    Pegasus Type, Inc.
    www.pegtype.com

  • Making the CD from .ISO File

    I downloaded Solaris 10 from the sun site. I extracted the ZIP File and got the .ISO Files.
    I successfully burned the CDs for CD 2,3 & 4 but while I m burning the CD 1, my sonic CD Write is trhowing erro "CD is not compatible with source" , I again downloded the CD 1 considring that there was error in downloading earlier. I tried many time but result is same. Can someone help me?

    If you have OS X on a .iso disc image, then you have an illegal copy of OS X. The Discussions is an Apple provided help system. We cannot help you with illegally obtained software.

  • Making a DVD from .MOV file w/o using iDVD

    Hello
    The film was made in FCE, saved in Quick Time (.mov) and want to burn it to a DVD to play on a DVD player. I don't want to use iDVD because I don't want the Apple logo in the corner (sorry).
    Any suggestions?
    Thanks!
    A L

    iDVD preferences

  • Ld.so.1: tar: fatal: relocation error: file /usr/sbin/tar: symbol fstatat64

    Hi Gurus.
    Please help in this one.
    When I try to use tar the following output is displayed:
    tar cvf 123.tar 123.txt
    ld.so.1: tar: fatal: relocation error: file /usr/sbin/tar: symbol fstatat64
    tar xvf 123.tar
    ld.so.1: tar: fatal: relocation error: file /usr/sbin/tar: symbol fchownat: referenced symbol not found
    Killed
    Check output ldd:
    ldd -r /usr/bin/tar
    libcmd.so.1 => /usr/lib/libcmd.so.1
    libsec.so.1 => /usr/lib/libsec.so.1
    libc.so.1 => /usr/lib/libc.so.1
    libdl.so.1 => /usr/lib/libdl.so.1
    /usr/platform/SUNW,Sun-Fire-xxx/lib/libc_psr.so.1
    symbol not found: attropen64 (/usr/sbin/tar)
    symbol not found: fstatat64 (/usr/sbin/tar)
    symbol not found: openat64 (/usr/sbin/tar)
    symbol not found: fchownat (/usr/sbin/tar)
    symbol not found: unlinkat (/usr/sbin/tar)
    symbol not found: futimesat (/usr/sbin/tar)
    symbol not found: fdopendir (/usr/sbin/tar)
    Output of: LD_LIBRARY_PATH
    echo $LD_LIBRARY_PATH
    /usr/lib:/usr/dt/lib:/opt/app/lib
    already try unset LD_LIBRARY_PATH
    Any ideas.
    I can tell You that tar was working fine 2 months ago.
    I suspect data corruption
    Many thanks
    Allrounder

    Hi,
    Is Vi functional on your system? If you havent already tried this you may want to try removing /usr/ucb/lib from LD_LIBRARY_PATH environment variable, or put /usr/lib in LD_LIBRARY_PATH before /usr/ucblib. This might clear up some of the problems you are having.
    Regards,
    Andrew
    Sun Developer Technical Support
    I got this message when i tried to install remedy on
    Solaris 7. T
    ld.so.1: vi: fatal: relocation error: file vi: symbol
    cur_term: referenced
    symbol not found
    Killed
    Then i took advices from others and set the
    LD_LIBRARY_PATH to
    "/usr/openwin/lib:/usr/dt/lib:/usr/ucblib", seemed it
    worked for others, but i still get the same error
    messages.
    Any1 has any idea how to fix it?
    thanks

  • Abs error: core.abs.tar.gz no such file or directory

    I am trying to learn how to compile packages on Arch but I am getting a error when I try to run abs:
    [root@anyhost ~] # abs
    ==> Downloading tarballs...
    ==> core...
    tar (child): core.abs.tar.gz: Cannot open: No such file or directory
    tar (child): Error is not recoverable. Exiting now.
    tar: Child returned status 2
    tar: Error is not recoverable exiting now
    Any ideas?

    I think the package format was changed from tar.gz to .xz a while back.Try to re-install abs and also use an updated mirror.

  • Moving .csv file from windows(client) to linux server

    Hi All,
    I have a .csv file in "D:\Datafiles\Test.csv". I need to move this file to server top "$XXLS_TOP/admin/import/US/" using shell scripting.
    Server : XYZ
    Login : test_user
    Password : password
    Can anyone help me on this.I am new to shell scripting..
    thanks

    Hi,
    As already mentioned above, you have 2 major options:
    1.samba (lots of docs on the net)
    2. ftp (even more docs on the net)
    If you decide to use ftp, then here's a starting point:
    -install ftp server on your Win machine-
    -you can use lftp , which has the ability to read a set of commands from a file
    For instance:
    [kido@kido ~]$ pwd
    /home/kido
    [kido@kido ~]$ ls
    cacti_backup.tar.gz                    Desktop     ftp       j2re-1_4_1_02-solaris-sparc.sh  out   test
    cacti_data_query_ucdnet_device_io.xml  diskio.tar  help.txt  net-snmp_devio.xml              perl
    [kido@kido ~]$ cd ftp
    [kido@kido ftp]$ ls
    ftpscript
    [kido@kido ftp]$ cat ftpscript
    open localhost -u kido,123kido$
    ls
    get help.txt
    bye
    [kido@kido ftp]$ lftp -f ftpscript
    drwxrwxrwx    2 501      501          4096 Feb 25  2009 Desktop
    -rw-r--r--    1 501      501      13137873 Mar 30 19:54 cacti_backup.tar.gz
    -rw-rw-r--    1 500      500         34216 Feb 03  2007 cacti_data_query_ucdnet_device_io.xml
    -rw-r--r--    1 501      501          4950 Apr 07 08:46 diskio.tar
    drwxrwxr-x    2 501      501          4096 Sep 08 15:53 ftp
    -rw-rw-r--    1 501      501           144 Jul 30 19:27 help.txt
    -rw-r--r--    1 501      501      23023830 May 27 14:17 j2re-1_4_1_02-solaris-sparc.sh
    -rw-rw-r--    1 500      500          2568 Aug 18  2005 net-snmp_devio.xml
    -rw-rw-r--    1 501      501          8093 Aug 05 15:21 out
    drwxrwxr-x    2 501      501          4096 Jun 16 15:38 perl
    drwxrwxr-x    2 501      501          4096 Sep 02 13:10 test
    [kido@kido ftp]$ ls
    ftpscript  help.txt
    [kido@kido ftp]$ You can modify ftpscript and put any commands you need. Then you can run "lftp -f ftpscript" from cron (for instance). For more details: man lftp.
    kido

  • How I can install Firefox to Ubuntu 10.10 from *.tar.bz2 format?

    I can`t install Firefox from *.tar.bz2. PLEASE help me.

    [https://support.mozilla.com/en-US/kb/Installing%20Firefox%20on%20Linux Installing Firefox on Linux]
    thank you
    Please mark "Solved" the answer that really solve the problem, to help others with a similar problem.

  • Configure ODBC to access a CSV file on Linux for access from BI Server

    How to configure an ODBC connection to a CSV file on Linux for access from the BI Server Repository physical layer
    I am migrating a working windows OBIEE installation to Linux and can not seem to connect to csv files on Linux (from th BI server also running on the same Linux machine).
    I am using SUse Linux Enterprise server / 10 (Slash 10) standard odbc drivers
    My odbc ini file entries are:
    [ODBC]
    Trace=0
    TraceFile=odbctrace.out
    TraceDll=/app/oracle/product/10.1.3/OracleBI/odbc/lib/odbctrac.so
    InstallDir=/app/oracle/product/10.1.3/OracleBI/odbc
    UseCursorLib=0
    IANAAppCodePage=4
    [ODBC Data Sources]
    AnalyticsWeb=Oracle BI Server
    Cluster=Oracle BI Server
    SSL_Sample=Oracle BI Server
    idcbicsvfiles=Odbc Text driver
    [idcbicsvfiles]
    Description = Odbc Text driver
    Driver = Odbc Text driver
    Directory = /data/oracle/OracleBIData/idc
    #ReadOnly = No
    #CaseSensitive = No
    #Catalog = No
    ColumnSeperator = ,
    #Trace = 1
    #Tracefile =/data/oracle/OracleBIData/odbctrace.txt
    #Username      = oracle
    #Password      = ''
    [AnalyticsWeb]
    Driver=/app/oracle/product/10.1.3/OracleBI/server/Bin/libnqsodbc.so
    Description=Oracle BI Server
    ServerMachine=local
    Repository=
    Catalog=
    UID=
    PWD=
    Port=9703
    The csv files I want to use are in the directory /data/oracle/OracleBIData/idc to which I have set up a working and checked connection ([idcbicsvfiles]) on the linux machine itself.
    The error message I get when I select view data in the physcial layer is:
    [NQODBC][SQL_STATE: HY000][nQSError: 10058] A general error has occurred.
    [nQSError: 43093] An error occurred while processing the EXECUTE PHYSICAL statement.
    [nQSError: 16023] The ODBC function has returned ans error. The database may not be available, or the network may be down.
    Please can anybody give me a clue on how to get this working e.g. a working odbc.ini file from your own installation (and/or a tip for the odbc driver choice/configuration)
    P.S. I know this is not supported by Oracle but can not imagine, that nobody is using this.

    Hi,
    Chekc this...Re: Is there ODBC driver for excel flat file in Unix Box
    Re: OBIEE to use a CSV file as a data source on Linux
    Regards,
    Srikanth
    Edited by: Srikanth Mandadi on Oct 8, 2010 2:50 AM

  • I need to insert Pages text file at end of a file; i.e., making one long document from several files. insert 'file' is not option in toolbar. how do i do this?

    i need to insert a Pages text file at end of another file; in other words, i'm making one long file from several files.  "insert file" is not an option in the toolbar, so how do i do this?

    cass516 wrote:
    this method sounds like a PAIN but of course i have no choice but to try it.  Why would Pages make such a simple thing so troublesome?  in other programs, you simply click 'insert file'.
    The only thing odd about Pages' Insert file is that it doesn't do its own format.
    You obviously think that MsWord is "The Norm" but I found really odd things that it won't do. To the point I, like others here, can't be bothered trying to drive the Word square peg into the Mac round hole.
    Mostly Pages works by drag and drop, I'm puzzled why that doesn't work with the thumbnails. But then there are quite a few oddities in every program. Pages is far from an exception.
    Peter

  • Command to install a package.pkg.tar.xz from local disk

    What's the command to install a package.pkg.tar.xz from local disk.

    I'm pretty sure with a little effort and the knowledge contained in our wiki, the man pages, and the forum, you could have found this yourself. Easily.
    This forum is not a hotline.

  • How do I create an FSDIAG file on Linux systems?

    QuestionHow do I create an FSDIAG file on Linux systems?
    AnswerTo create an FSDIAG file for the Linux Security product:
    Go to a working directory to which the fsdiag.tar.gz file will be created.
    Run the following command:
    # /opt/f-secure/fsav/bin/fsdiag
    Note: Any existing FSDIAG file will be overwritten.
    You will find the fsdiag.tar.gz file on the current working directory. Attach this file to your support request.
    To create an FSDIAG file for the Internet Gatekeeper (IGK) product:
    Create the diagnostic information file (diag.tar.gz) in the product install directory by running the following command:
    - IGK (Japanese 4.x): # cd /home/virusgw; make diag
    - IGK (English 4.x or English/Japanese 5.x): # cd /opt/f-secure/fsigk; make diag
    Note: Any existing FSDIAG file will be overwritten.
    Attach this file to your support request.
    Note that you can also create the diagnostic file by using the Web UI.

    An .srt is simply a plain text file with sequence numbers, time markers, and captions. You can use any text editor to make one. Follow the pattern:
    1
    00:00:00,500 --> 00:00:04,500
    So it was with my formal education
    as well.
    2
    00:00:04,600 --> 00:00:08,250
    Each weekday, while my father worked
    on his Sunday sermon...
    3
    00:00:08,300 --> 00:00:10,000
    I attended the school
    of the Reverend Maclean.
    The first number (e.g., 00:00:00,500) in each pair indicates when the caption starts. The second number (e.g., 00:00:04,500) in each pair indicates when the caption stops.
    If you're going to be captioning many videos, consider an application that merges a text editor and video preview window. Jubler (http://www.jubler.org/) is one.

  • Oracle9i files for Linux are corupted!!!!!

    So that we may better diagnose DOWNLOAD problems, please provide the following information.
    - Server name
    - Filename
    - Date/Time
    - Browser + Version
    - O/S + Version
    - Error Msg
    I have downloaded those file 5 times until now and every single one of them is corupted.
    Anyone has any sugestions.
    I use 10 Mbit Fiberoptic link to download files!

    From reading the other messages in this forum I now know that I'm not alone.
    I was lucky enough to get a valid download for 9.2 database for linux but it took
    a number of tries. It would be helpful if there could be a number of published
    mirror sites to try downloading from. Perhaps this is already implemented
    transparently to the end user and it's just luck of the draw that you hit a mirror
    that works...
    However, I've been having problems downloading ora9ias for about 4 days now.
    I'm probably making things worse for others because I've tried to download
    disk 1 and 4 at least 3 times and keep getting files that are close to the stated
    size but usually a few k bigger or smaller; then I get the invalid gzip file error
    message from gunzip. I've tried downloading from IE 5.5, netscape (from both
    windows and linux), trying various ways of downloading (holding shift, or right
    clicking with save as) and still no luck.
    I'll keep trying, but if anyone has any solutions please publish them to this forum.
    thanks.

  • Siebel 8.0.0.12 Fix Pack; Unable to get the seed from binary file.

    Hello Folks,
    Can anyone throw some light into what action is required on my scenario.
    I have applied Fix Pack Siebel 8.0.0.12 on top of 8.0.0.11 SBA. After it is appled, I am facing a documented issue within the Release Notes for the 8.0.0.12 Fix Pack
    The issue is "UNABLE TO LAUNCH URL AFTER APPLYING SIEBEL 8.0.0.12". I tried the steps given with the MR document, however, I am still having this issue.
    I am also not sure what is expected at the step of; Run the following command: seedgeneratorutil myseed.dat abcdef .
    It's asking me for a value to enter for seed at command prompt. "Enter the seed":
    what I should give here. As an assumption values,I gave SADMIN and tried to launch but still shows up the same error
    Please Assit
    Steps Details from Release Notes:
    UNABLE TO LAUNCH URL AFTER APPLYING SIEBEL 8.0.0.12
    Component: Server Infrastructure
    Subcomponent: SWSE
    Product Version: Siebel 8.0.0.12
    Base Bug ID: 11938270
    **Users are unable to launch the URL after applying the Siebel 8.0.0.12 Fix Pack.
    **Use the following workaround to address this issue:
    Navigate to the eappweb/bin directory from the command line on the SWSE installation.
    Run the following command:
    seedgeneratorutil myseed.dat abcdef
    NOTE: In the example, myseed.dat is a filename. You can give any file name you wish.
    The myseed.dat file is generated in the eappweb/bin directory.
    Edit eapps.cfg to include the following parameters under the SWE section:
    seedfile = < complete path for myseed.dat >
    Bounce the web server.
    (For Linux only) Copy libmod_swe.so from the eappweb/bin folder to the web/ohs/modules folder
    Thanks
    Kumar

    Wilson,
    Thanks for your reply.I have repeated the steps and regenerated the error messages.
    Browser
    Message:
    An error occurred while trying to process your request. This error indicates a problem with the configuration of this server and should be reported to the webmaster (along with any errors listed below). We apologize for the inconvenience
    Initialization error:
    Unable to get the seed from binary file.
    Log
    2021 2011-09-20 23:23:01 0000-00-00 00:00:00 +0530 00000000 001 003f 0001 09 ss110920_7068 7068 7852 E:\sba80\SWEApp\log\ss110920_7068.log 8.0.0.12 [20444] ENU
    ProcessPluginState     ProcessPluginStateError     1     000000024e781b9c:0     2011-09-20 23:23:01     7852: [SWSE] Unable to get the seed from binary file.
    Eapps.cfg
    [swe]
    Language = enu
    Log = errors
    LogDirectory = $(SWSERoot)\log
    ClientRootDir = $(SWSERoot)
    SessionMonitor = False
    AllowStats = true
    LogSegmentSize = 0
    LogMaxSegments = 0
    DisableNagle = False
    seedfile = E:\sba80\SWEApp\BIN\80012seed.dat
    Thanks
    Kumar

  • Deleting the data from logical file/unix file

    Hi all.
        I need to delete the all the data from logical file (application server file/unix file).But I dont want to delete the logical file ( only data in the logical file should be deleted, i.e making file empty)
    Thanks in advance.
    Cheers.
    sami

    Hi Sami,
    Refer thsi document https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/4d7aeb7d-0c01-0010-fa8a-a4a8e8968a93.
    Regards,
    Flavya

Maybe you are looking for

  • New iCloud with old Apple ID???  How do I create a new one..

    I have a old applet ID [email protected] and a old iCloud I'd [email protected] from my IPAD.. I just got a iPhone 5 and want to setup a new iCloud like [email protected] which is within the same apple ID [email protected] I try to make one which I t

  • What is IOS 5 and what does it do and i cant update my ipod on itunes

    I see all this talk about the new update for IOS 5 what doest that mean or do and when go in to my itunes accout and prees it to update it fishinshes and says my connection has timed out ples help

  • Mac101 (German?); Hands on Finder Intro;

    Hello, my mother in law (60+) plans for a computer her first at all. Is there a Mac101 out in German language? And if possible a printable version too? Good old dead old OS7 Mac was shipped with a nice intro for the very first steps to use the finder

  • CE 7.1 Trial - Differences between the versions

    Hi there, I would like to check out the new BPM Feature within the NetWeaver    CE, but I'm a little confused about all the different versions available. There is a CE 7.1 Trial SP 3, CE 7.1 Trial SP 5 and a CE 7.1 Trial EHP 1... Whats the current Ve

  • How to save files from email

    I am having issues saving a garageband file that my friend emailed to me from his ipad. I want to save it to my ipad so that I can add guitar to the vocals. When I go to my email I can play the file and it will let me email the file or massage it but