ASP Code
  Home arrow ASP Code arrow DB Tables Backup using ASP, OO4O and Oracl...
ASP Free Forums 
.NET  
ASP  
ASP Code  
ASP.NET  
ASP.NET Code  
BrainDump  
C#  
Code Examples  
Database  
Database Code  
IIS  
Microsoft Access  
MS SQL Server  
Silverlight  
Visual Basic.NET  
Windows Scripting  
Windows Security  
XML  
Mobile Linux 
App Generation ROI 
IBM® developerWorks 
ASP Web Hosting  
ASP.NET Web Hosting 
Windows Web Hosting
 
Weekly Newsletter
 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
ASP CODE

DB Tables Backup using ASP, OO4O and Oracle's Export Utility by Jenny Corpus
By: aspfree
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 4 stars4 stars4 stars4 stars4 stars / 2
    2001-09-05

    Table of Contents:

    Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT


    DB Tables Backup using ASP, OO4O and Oracle's Export Utility
    by Jenny Corpus

    This is a simple ASP program that allows the user to create
    a backup copy of a DB user's tables. It uses Oracle Objects for OLE (OO4O)
    for database access to Oracle and for the backup function, Oracle's
    Export Utility program is used. 
    This code assumes that the web server has the following installations:
    1.Oracle Net8
    2.Oracle Object for OLE

    Here is the code:

    '************** Start**********************'
    File: Export.asp
    <%@ Language=VBScript %>
    <%Option Explicit%>
    <%

    dim OraDatabase 'Oracle Database object
    dim OraDynaset 'Oracle Dynaset object

    dim sExpPath 'physical path of Export program in the web server
    dim sExpFileNm 'physical path and file name of the Export file to be created
    'physical path must be existing in the web server


    sExpPath = "d:\oracle\ora817\bin\exp.exe" 'set the location of the export program
    sExpFileNm = "d:\Test\EXPDAT.DMP" 'set the name of the Export file to be created

    'Main Procedure
    Sub Main()

    if Request.Form("hidSubmit")="1" then 'Check if the form is submitted
    Call DoExport() 'Execute Export program
    end if

    Call Header() 'Write the Header
    Call Body() 'Write the Body
    Call Footer() 'Write the Footer

    End Sub

    'Export Procedure
    Sub DoExport()
    Dim nCount 'number of rows
    Dim nCtr 'counter for the loop
    Dim sTabList 'list of selected Tables to be exported
    Dim sTabNm 'selected Table Name

    nCount = int(Request.Form("hidCount")) 'Get the total number of rows

    'Check each checkbox of it is selected
    For nCtr=1 to nCount
    if Request.Form("chkExport" & nCtr) = "on" then 'Check if checkbox is checked
    sTabNm = Request.Form("hidTabNm" & nCtr) 'Get the selected Table Name
    sTabList = sTabList & "," & sTabNm 'Place selected name in the list of tables to be exported
    end if
    next

    sTabNm = Right(sTabList, Len(sTabList) - 1) 'Remove the comma at the start of the list

    Call ExportTables(sTabList) 'Export the tables

    End Sub

    '********************************
    'Execute the Export program
    Sub ExportTables(sTabNm)
    dim wsh 'WScript object
    dim sCommand 'Export command
    dim sConnection 'DB connection string

    'Make the DB Connection string
    sConnection = AppDic("UserName") & "/" & AppDic("Password") & "@" & AppDic("DBName")

    'Create the Export command
    sCommand = sExpPath & " " & sConnection & " tables=" & sTabNm & " File=" & sExpFileNm

    'Create the WScript Object
    set wsh = server.createobject("WScript.Shell")

    'Run the Export command
    wsh.run sCommand 

    End Sub
    '*********************************

    'Writes the HTML Header
    Sub Header()
    %>
    <HTML>
    <HEAD>
    <meta HTTP-EQUIV="Content-Type" content="text/html; charset=iso-8859-1">
    </HEAD>
    <SCRIPT language=javascript>

    //Checks or Unchecks all the checkboxes
    function CheckAll()
    {
    var nCount;
    var sChkName;
    var nCheck

    nCount = document.forms[0].hidCount.value;
    if (document.forms[0].btnCheck.value=="Check")
    {
    nCheck=1;
    document.forms[0].btnCheck.value="UnCheck";
    }
    else
    {
    nCheck=2;
    document.forms[0].btnCheck.value="Check";
    };

    for (var i=1; i <= nCount; i++)
    {
    sChkName="chkExport" + i;
    if (nCheck==1)
    {
    document.forms[0].item(sChkName).checked=true;
    }
    else
    {
    document.forms[0].item(sChkName).checked=false;
    };
    };
    };

    //submit form
    function Export()
    {
    document.forms[0].hidSubmit.value=1;
    document.forms[0].method='POST';
    document.forms[0].submit();
    };
    </SCRIPT>
    <BODY>
    <%
    End Sub

    'Retrieve tables of user from DB
    Function GetResults
    Dim sqlStatement 

    ' Get the reference to the OraDatabase object from the pool
    set OraDatabase = OraSession.getDatabaseFromPool(10)

    if Oradatabase is nothing then 'Check if connection is successful
    GetResults=-1
    Exit Function
    else
    'Make the select statement
    sqlStatement = "SELECT table_name, tablespace_name FROM user_tables " 

    'Execute the select statement, store it in the Dynaset
    set OraDynaset = OraDatabase.CreateDynaset(sqlStatement, cint(0))
    if OraDynaset.RecordCount < 1 then 'Check if there are records retrieved
    GetResults=-2
    Exit Function
    else
    GetResults=1
    End if
    end if

    End Function

    'Displays error message on the HTML
    Sub DisplayError(nError)
    Dim strWrite

    Select Case nError
    Case -1
    strWrite="No Connection."
    Case -2
    strWrite="No records retrieved"
    end select

    Response.Write strWrite

    End Sub

    'Displays the retrieved rows in an HTML table
    Sub DisplayTable()
    dim strWrite 'string to write
    dim nCount 'Number of rows retrieved

    %>
    <FORM Method=POST >
    <TABLE border=1>
    <TR>
    <TD><INPUT type='button' name="btnCheck" value="Check" onclick="Javascript:CheckAll()"></TD>
    <TD nowrap> Table Name </TD>
    <TD nowrap> Tablespace Name </TD>
    </TR>
    <%
    nCount = 0
    Do Until OraDynaset.EOF
    nCount = nCount + 1
    strwrite = "<TR>" 
    strwrite = strwrite & "<TD nowrap><INPUT type='hidden' name='hidTabNm" & nCount &"' value=" & OraDynaset.Fields("table_name") & ">" 
    strwrite = strwrite & "<INPUT type='checkbox' name='chkExport" & nCount & "' ></TD>"
    strwrite = strwrite & "<TD nowrap>" & OraDynaset.Fields("table_name") & "</TD>"
    strwrite = strwrite & "<TD nowrap>" & OraDynaset.Fields("tablespace_name") & "</TD>"
    strwrite = strwrite & "</TR>" & chr(13) & chr(10)
    Response.Write strWrite

    OraDynaset.MoveNext
    Loop

    %>
    </TABLE>
    <BR>
    <INPUT type='button' name='btnExport' value="Export" onclick="JavaScript:Export()">
    <INPUT type='hidden' name='hidSubmit' value=0>
    <INPUT type='hidden' name='hidCount' value=<%=nCount%> >
    </FORM>

    <%

    End Sub


    'Displays the Body of the HTML
    Sub Body()
    Dim nRet 'Return value from GetResults(); 1=OK, -1 or -2=ERROR

    'Get the rows from DB 
    nRet=GetResults()
    If nRet <> 1 then 'Check if there is an error
    Call DisplayError(nRet)
    else
    Call DisplayTable
    end if

    End Sub

    'Writes the Footer of the HTML
    Sub Footer()

    'Set the Oracle objects to nothing
    Set OraDatabase=Nothing
    Set OraDynaset=Nothing

    %>
    </BODY>
    </HTML>
    <%
    End sub


    '****START of server-side procedures****
    Call Main()

    %>
    '************** End********************'


    '************** Start**********************'
    'File: Global.asa

    <OBJECT RUNAT="Server" SCOPE="Application" ID="AppDic" PROGID="Scripting.Dictionary"></OBJECT>
    <OBJECT RUNAT=Server SCOPE=Application ID=OraSession PROGID="OracleInProcServer.XOraSession"></OBJECT>
    <SCRIPT LANGUAGE=VBScript RUNAT=Server> 

    Sub Application_OnStart
    AppDic.Add "DBName","orcl" 'Registered service name in the SQL Net
    AppDic.Add "UserName","scott" 'User name
    AppDic.Add "Password","tiger" 'Password

    OraSession.CreateDatabasePool 20, 100, 600, AppDic("DBName"), AppDic("UserName") & "/" & AppDic("Password"), 0


    End Sub

    Sub Application_OnEnd

    'Destroys global pool of connections.
    OraSession.DestroyDatabasePool 

    End Sub

    </SCRIPT>


    DISCLAIMER: The content provided in this article is not warranted or guaranteed by Developer Shed, Inc. The content provided is intended for entertainment and/or educational purposes in order to introduce to the reader key ideas, concepts, and/or product reviews. As such it is incumbent upon the reader to employ real-world tactics for security and implementation of best practices. We are not liable for any negative consequences that may result from implementing any information covered in our articles or tutorials. If this is a hardware review, it is not recommended to open and/or modify your hardware.

    More ASP Code Articles
    More By aspfree

     

    IBM® developerWorks developerWorks - FREE Tools!


    Check out the new Jazz space on developerWorks

    <a href="http://zeus.developershed.com/shonuff.php?blackbird=3853&zoneid=442&source=&dest=http%3A%2F%2Fwww.ibm.com%2Fdeveloperworks%2Fspaces%2Fjazz%3FS_TACT%3D105AGY31%26S_CMP%3DDEVSHED&ismap="><img src="http://images.devshed.com/corp/img/news/jazz01.gif" alt="developerWorks Jazz space" align="left"></a>You've heard the buzz about Jazz... want to know more about it from a developer's perspective? Check out the Jazz space on developerWorks. This space is an up-to-date resource for developers, including technical information about Jazz and products built on Jazz, like Rational Team Concert Express. The Jazz space includes content from a wide variety of sources, including links, feeds, and comments from experts.
    FREE! Go There Now!


    IBM DB2 Deep Compression ROI Tool

    The IBM DB2 Deep Compression ROI tool is designed for DBA’s and IT management personnel to perform a clinical analysis of the cost savings gained from the Storage Optimization feature of DB2 9 for Linux, UNIX and Windows. The feature, also known as Deep Compression, compresses data that lies within a database by up to 80% at times.
    FREE! Go There Now!


    NEW! Accelerating Software Innovation on i on Power Systems

    Attend this launch webcast with Scott Hebner, Vice President of IBM Rational Marketing and Strategy, for an overview of Rational’s new software offerings and resources to help modernize and accelerate software innovation on i on Power Systems – while ensuring past application investments are protected and continue to grow. Learn how these solutions are helping customers extend their core i5/OS solutions toward modern architectures such as SOA and web technologies to deliver business improvements that stand the test of time.
    FREE! Go There Now!


    NEW! Application Development Tools for the Mainframe Developer

    You probably have thousands of lines of COBOL code loaded with business intelligence and being used to run your business, along with an army of developers maintaining these applications. Learn how to prepare your applications and developers so you can keep that competitive edge and move to a service-oriented architecture with the IBM Rational Enterprise Modernization solutions. Replay is available for 9 months.
    FREE! Go There Now!


    NEW! Best Practices in Integrated Requirements Management

    Poor Requirements Management capabilities in an Enterprise have been linked to excessive project failures, escalating IT costs, and failure to deliver competitive advantage into the marketplace. Join Brianna M Smith from IBM Rational and learn about how successful organizations align IT and Business stakeholders through collaborative processes and tools for effective requirements management, and how an integrated approach across the IT lifecycle can provide unparalleled visibility and traceability to ensure that project teams are delivering on the business vision by "doing the right things" and "doing things right."
    FREE! Go There Now!


    NEW! Cook up Web sites fast with CakePHP, Part 4: Use CakePHP&apos;s Session and Request Handler components

    CakePHP is a stable production-ready, rapid-development aid for building Web sites in PHP. This "Cook up Web sites fast with CakePHP" series shows you how to build an online product catalog using CakePHP.
    FREE! Go There Now!


    NEW! Download a free trial of Lotus Quickr 8.0

    Visit IBM developerWorks to download a free trial version of Lotus Quickr 8.0, which enables collaboration by transforming the way everyday business content such as documents, rich media, photos, and video can be shared. Lotus Quickr makes it faster and easier to share content of all types (not just documents) within virtual teams. It is designed to make it easier to collaborate across organizational boundaries, while continuing to work within the context of familiar desktop applications.
    FREE! Go There Now!


    NEW! Run your first CICS application on a PC using TXSeries for Windows

    Learn the basics of the IBM Customer Information Control System (CICS). With a hands-on exercise, learn how to get your first CICS application up and running on your desktop using TXSeries V6.1 for Windows. The tutorial shows you how to download and install a free trial version of TXSeries V6.1.
    FREE! Go There Now!


    NEW! Trial download: IBM Rational Tester for SOA Quality V7.0.1

    Get a free trial download of the latest version of IBM Rational Tester for SOA Quality V7.0.1, a functional and regression testing tool that enables the creation, comprehension, modification and execution of testing GUI-less Web services.
    FREE! Go There Now!


    NEW! Using IBM Rational Developer for System z and IBM Rational ClearCase together to manage application development

    Whether you are creating new applications or modifying existing ones, managing integration of new components with traditional z/OS elements is a critical part of building and deploying modern applications. Listen to this webcast to see how IBM can help you optimize your development process using an IDE like Rational Developer for System z that integrates with management tools, such as ClearCase to manage your application development on mainframes.
    FREE! Go There Now!



    All FREE IBM® developerWorks Tools!

    ASP CODE ARTICLES

    - ASP Forms
    - ASP: The Beginning
    - Getting Remote Files With ASP Continued
    - Inbox and Outbox Manipulation in ASP
    - Relational DropDownList Using VB.NET
    - Ad Tracking URL Hits
    - Use ViewState to display one record per page...
    - Send Email using ASP.NET formatted in HTML
    - ASP File Explorer
    - ASP/XML Interview questions by Srivatsan Sri...
    - Various methods of setting Date values to a ...
    - Conditional DataGrid Item and using checkbox...
    - Fill .NET Listbox with SQL DataReader
    - Filling Dropdown box using Code-Behinds in C#
    - FLAMES code sample written in .NET What is F...





    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 4 Hosted by Hostway
    For more Enterprise Application Development news, visit eWeek