CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    May 2007
    Posts
    30

    Oracle File Extension - EASY QUESTION

    What is the extension for an oracle database file?
    What is the extension for an oracle log file?


    IE: Access = *.mdb
    SQL Server = *.mdf | *.ldf
    Oracle = *.??? | *.???

  2. #2
    Join Date
    May 2007
    Posts
    30

    Re: Oracle File Extension - EASY QUESTION

    I figured it out... Oracle uses this crazy Enterprise thing that allows users to create their own file extensions... or something. By default, the only extension I could find was *.dbf and *.ora so I'm going to use those. If those are wrong, the user can always select "Show all files" from the combo box in the Open File Dialog and select whatever (s)he wants.
    Last edited by MeatLander; September 7th, 2007 at 04:58 PM. Reason: Found the answer

  3. #3
    Join Date
    Jun 2006
    Posts
    437

    Re: Oracle File Extension - EASY QUESTION

    Hi all

    Oracle is very different from others databases such as Access or SqlServer.
    Oracle hasn't file in the sense of "document", as Access.
    Of course, data are stored into one or more file on disk, but this isn't managed by a kind of Save As command: Oracle works with tablespaces, that are logical group of files and users don't see these files (they haven't to see them).
    When one creates a tablespace has to specify one (or more) file where to store data; usually these file have .dbf as extension

  4. #4
    Join Date
    Aug 2007
    Posts
    23

    Re: Oracle File Extension - EASY QUESTION

    .dbf is used for an Oracle 8.x Tablespace File
    www.coderewind.com
    Best Place to hunt for Code

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured