Oracle reports 6i and the web

I have installed the d2k 6.i pack on my NT desktop and am pointing to a 8.1.5 database on another machine. All I have is the Webdb listener up and running. No other Webserver as I was told this was all I needed to run reports on my desktop on the Web.
The report runs fine on my desktop but when I try to run this report on the Web I get: Page not found
This is the url:
http://granite.isearch.com/dev60cgi/rwcgi60.exe?server=Rep60_GRANITE&report=C:\orant\bin\ats0107.rdf&userid=pr_hollydev/orahollydev@r81&destype=cache&desformat=HTML
My report server is up. My webdb listener is up. I do not have a web server installed besides what came with D2k.
I did copy the rwcgi60.exe to the OWS/4.0/bin directory
tnsnames entry:
REP60_GRANITE.WORLD =
(DESCRIPTION =
(ADDRESS = (COMMUNITY = isearch.world)(PROTOCOL = TCP)(Host = granite)(Port = 1949))
sqlnet.ora
# Filename......: sqlnet.ora
# Name..........: isearch.world
# Date..........: 26-FEB-99 10:58:23
AUTOMATIC_IPC = ON
TRACE_LEVEL_CLIENT = OFF
SQLNET.EXPIRE_TIME = 0
NAMES.DEFAULT_DOMAIN = world
NAME.DEFAULT_ZONE = world
SQLNET.CRYPTO_SEED = "18110733421811237124"
NAMES.DIRECTORY_PATH = (TNSNAMES,ONAMES)
DAEMON.TRACE_LEVEL = OFF
DAEMON.TRACE_MASK = (106)
authentication_services = (NONE)
My NT Reg key for REP60
REPORT60_VIRTUAL_MAP = '/cache/'
REPORTS60_PHYSICAL_MAP = 'c:\orant\REPORT60\server\cache"
REPORT60_SHARED_CACHE = "YES"
REPORTS60_REPORTS_SERVER = "REP60_GRANITE"
REPORTS60_PATH = C:\orant\REPORTS60;C:\orant\bin;C:\WEB_REPORTS
I tried the browser test using this and got page not found.
http://rep60_granite/ows-bin/rwcgi60.exe?
Do I need to install a web server?
Thanks
K
null

1. Yes you need a web server
2. the env. vars:
REPORT60_VIRTUAL_MAP,
REPORTS60_PHYSICAL_MAP, and
REPORT60_SHARED_CACHE
are no longer needed.
3. The 'community' part of the Reports sever entry in your tnsnames.ora isn't required.
Regards
The Oracle Reports Team http://technet.oracle.com

Similar Messages

  • Oracle Reports 6i and the Dynamic SQL

    I use Oracle 8.1.7 and Oracle Reports 6i Builder;
    My problem is that I am trying to obtain dataset for the report via stored procedure (using ref cursor). As far as I understand I must specify strongly typed refcursor in my package (specify record type based of which the ref cursor will be created, not just ref cursor without any return specification). But when it comes to my stored procedure implementation, here I would like to use dynamically created SELECT statement and since it will be parsed and executed at runtime I forced to use only untyped ref cursor to return data from the stored procedure.
    TYPE my_refcur IS REF CURSOR;
    cv_tmp my_refcur;
    v_SQL VARCHAR2(2000);
    BEGIN
    -- here I set v_SQL ....
    OPEN cv_tmp
    FOR v_SQL;
    RETURN cv_tmp;
    END;
    But this way I somehow need to convert untyped ref cursor to strongly typed one. This is a problem I would like you to help me with.
    Thanks in advise.
    By the way, I am not familiar with Oracle Reports 9. Does it still require to return only strongly typed ref cursor from stored procedures?

    Hello Alexey,
    The reason Reports requires strongly typed ref cursors to be returned to it is that, with weak ref cursors the list of columns returned by the cursor cannot be determined at report design time. For a weak ref cursor, the data will be populated based on a query specified only at runtime. As a result, you will not be able to add any layout to your report, since the query group will be empty.
    Please take a look at the reply in the post below on the same topic, for a method to retrieve data from a stored procedure returning a weakly typed ref cursor:
    Re: Reports On Ref Cursor
    Thanks,
    Srivas.
    The Oracle Reports Team.

  • Oracle Apps Report error "Oracle Reports Server CGI - The Reports Server Engine terminated abnormally."

    Hi ,
    I have modified layout of one existing custom report.
    I have added 3 columns in the report , Now when I execute the report sometimes it gets executed with the newly added columns and sometimes it errors out with below error.
    Error: The requested URL was not found, or cannot be served at this time.
    Oracle Reports Server CGI - The Reports Server Engine terminated abnormally.
    Any pointers in this regards will be appreciated.
    Thanks

    I found there were some srw.message statement ( used for debugging purpose) were there , when I removed those statements. This error was gone.

  • DeskI report refreshable on the web

    I am attempting to make a DeskI report available on the web.  That part was easy, i saved as HTML, and was able to view it on a web page.  But we need a step further,  i need to be able to make this report refreshable, it has 4 prompts.  We want the user to be able to enter info into prompts and get the report.  I know this can be done,  but cannot figure out why i can't make it work, any help is appreciated.

    When saving the Deski report as HTML set the "Automatic Reload Every"
    The browser reloads the document according to the frequency specified in the box, which ensures that the HTML document is kept up-to-date with changes made to the original document in BusinessObjects. This is similar to the document refresh feature.

  • How to run a report out of the web container?

    Hi All,
    <p>
    Does anyone have tips on running a report outside of the web container?  I'd like to be able to JUnit the scenarios I'm coding up without having an app server running.  What is the ReportClientDocument expecting in the request, response, and context?  The code as shown just returns the enclosed error.
    <p>
    All I'm really trying to do is have the report execute and be able to assert that the data is appropriately retrieved from the data source.  If there's a way to do that without the Viewer, that would be cool, too.
    <p>
    Any tips would be much appreciated.   Sorry about the poorly formatted code and error... the code tags don't seem to be working...
    <p>
    Thanks,
    <p>
    Eric
    <pre>public void testReportRunning() throws ReportSDKExceptionBase{
              ReportClientDocument rcd = initReportClientDoc("./test/data/EBTest1.rpt");
              assertTrue(rcd.isOpen());
              CrystalReportViewer crv = new CrystalReportViewer();
              crv.setReportSource(rcd.getReportSource());
            String htmlContent = crv.getHtmlContent(new MockHttpServletRequest(), new MockHttpServletResponse(), new MockServletContext());
            System.out.println(htmlContent);
    com.businessobjects.report.web.shared.WebReportingException---- Error code:0
         at com.businessobjects.report.web.e.if(Unknown Source)
         at com.businessobjects.report.web.e.a(Unknown Source)
         at com.crystaldecisions.report.web.ServerControl.a(Unknown Source)
         at com.crystaldecisions.report.web.ServerControl.a(Unknown Source)
         at com.crystaldecisions.report.web.ServerControl.getHtmlContent(Unknown Source)
         at com.tririga.crystalpoc.ReportAccessorTest.testReportRunning(ReportAccessorTest.java:82)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at junit.framework.TestCase.runTest(TestCase.java:164)
         at junit.framework.TestCase.runBare(TestCase.java:130)
         at junit.framework.TestResult$1.protect(TestResult.java:106)
         at junit.framework.TestResult.runProtected(TestResult.java:124)
         at junit.framework.TestResult.run(TestResult.java:109)
         at junit.framework.TestCase.run(TestCase.java:120)
         at org.eclipse.jdt.internal.junit.runner.junit3.JUnit3TestReference.run(JUnit3TestReference.java:130)
         at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:460)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:673)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:386)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:196)</pre>
    Edited by: Eric Batzdorff on Jun 12, 2009 12:24 AM
    Edited by: Eric Batzdorff on Jun 12, 2009 12:24 AM
    Edited by: Eric Batzdorff on Jun 12, 2009 12:25 AM

    There's no documentation as to what's the minimum HTTPServletContext, HTTPServletRequest and HTTPServletResponse the CrystalReportViewer expects. 
    There certainly are plenty of unit testing frameworks for Java Web Apps out there, if that's where you're headed.
    Sincerely,
    Ted Ueda

  • Error while adding a used relationship between the New DC and the Web DC

    Hi Gurus
    We are getting the Error in NWDS while Adding  a used relationship between the New DC and the Web DC.
    Steps what we are Done
    1. Create the custom project from inactiveDC's
    2.creating the project for the component crm/b2b in SHRAPP_1
    3.After that we changed the application.xml and given the contect path.
    4.Then we tried to add Dependency to the custom create DC we are getting the error saying that illegal deppendency : the compartment sap.com_CUSTCRMPRJ_1 of DC sap.com/home/b2b_xyz(sap.com.CUSTCRMPRJ_1) must explicitly use compartment sap.com_SAP-SHRWEB_1 of DC sap.com/crm/isa/ like that it was throwing the error.
    so, we skip this step and tried to create the build then it is saying that build is failed..
    Please help us in this regard.
    Awaiting for ur quick response...
    Regards
    Satish

    Hi
    Please Ignore my above message.
    Thanks for ur Response.
    After ur valuble inputs we have added the required dependencies and sucessfully created the projects, then building of the  projects was also sucessfully done and  EAR file was created.
    We need to deploy this EAR file in CRM Application Server by using the interface NWDI.
    For Deploying the EAR into NWDI, we need to check-in the activites what i have created for EAR. once i check-in the activites ,the NWDI will deploy the EAR into CRM Application Server.
    In the Activity Log we are able to check the Activities as Suceeded but the Deployment column is not showing any status.
    When i  right click on my activity Id the deployment summery is also disabled.
    So finally my Question is that where can i get the deployment log file, and where can i check the deployment status for my application..
    Any pointers in this regard would be of great help..
    Awaiting for ur valuble Responses..
    Regards
    Satish

  • Need to know why websites say my cookies are Blocked. My cookies are on and acept 3rd party cookies is checked and the web site is not blocked but Excite, StatCounter and links off of my job servcie site say cookies are blocked

    I am getting error messages on several different pages that my cookies are blocked but checking the Tools - Options - Privacy accept cookies and accept 3rd party cookies are both enabled and the web sites are not listed under the exceptions button
    == URL of affected sites ==
    http://www.excite.com; http://my.statcounter.com; http://www.careerbuilder.com/jobseeker/ApplyOnline/ExternalApply.aspx?useframes=True&aourl=http%3a%2f%2fjobs.brassring.com%2f1033%2fASP%2fTG%2fcim_jobdetail.asp%3fSID%3d^yO_slp_rhc_SH6kO%2fBg3XfACT2rJ6oKKYLIsW2rhGiHOLenpNYCPYFHjYWwlbbMXORa6BsEbeeuFe2XAiP77_C_R__L_F_0JLmPqHv6d5W1fI_slp_rhc_1wVz03j7dDsFltg%3d%26jobId%3d356833%26type%3dsearch%26JobReqLang%3d1%26recordstart%3d1%26JobSiteId%3d5224%26JobSiteInfo%3d356833_5224%26GQId%3d0&Job_DID=J8E4VG6H6JZV4W5S7B5

    Check on the setting, as far s i know it was there by going on tools>options> privacy then check it out. If there was no changes, what i can suggest is try to update your firefox.
    [http://www.nestentertainment.com/nest-productions_c1441.aspx Kids Sunday School]

  • Can we produce a newsletter in one CS4 application and output it to both print and the web?

    Can we produce a newsletter in one CS4 application and output it to both print and the web?
    If so what do you suggest that we use?
    Message was edited by: [email protected]

    A very cautious "yes". It mainly depends on what you expect.
    It has always been possible to just export to PDF and post that on your site. You can also export your ID file as one comprehensive SWF file and immediately put that onto the site -- it comes with a few handy browse functions, snazzy page flipping (when required); and it looks exactly like your ID document.
    Hard-core techies can use the Export To XHTML/DreamWeaver function, but that will only export the very bare bones -- plain text, with just the commands for text formatting in place. You have to re-do layout and styling in HTML code. Bear in mind ID is designed, top to bottom, as a document layout program, and this export is "extra", not really a basic feature.

  • I want to bring in text from Word (and the web) that is already hyperlinked into InDesign. How do I do it while keeping the links active?

    I want to bring in text from Word (and the web) that is already hyperlinked into InDesign. How do I do it while keeping the links active?
    Whenever I copy/paste from web or Word it removes the hyperlinks.  And when I try to do it by "Place"ing a Word document into my InDesign project it keeps the formatting with it, the rectangles around the text.
    I have the latest version of InDesign.
    Any help is appreciated. 

    Copy-and-paste may not include formatting. A regular import using Place is the best way.
    The rectangles around the hyperlinks are just to indicate they are links -- they do not print, but they do show up in your PDF.
    You can remove them by double-clicking the hyperlink in the Hyperlinks panel and select "Invisible Rectangle" as type.
    Typically, Word hyperlinks are formatted -- blue text, underline -- with a Character Style. If you want to remove or change the formatting, all you have to do is change the character style. My experience, though, is you must check all hyperlinks because for no apparent reason sometimes they appear in the document without the character style.

  • Create Now - HTML5 and the Web | Create Now | Adobe TV

    We show you what is possible with HTML5 and the web, with demos of the latest features in Adobe® Muse™ and more. We also sit down for a chat with UX designer Michael Cassius, web guru John Allsopp, and Adobe's own Jared Wyles to talk through what is happening in web development today, and the exciting things to come.
    http://adobe.ly/ZpY13Q

    It says it's a myth that you do not need the internet to use these programs, but I think you do. I regularly get asked to confirm by account online. Sometimes I travel in areas where there is no internet access, but find myself stuck and unable to use the programs because I cannot confirm my account online.

  • Forte and the Web

    I was wondering if anyone has developed Forte applications on the web using
    JAVA rather than the HTML based WebSDK stuff? If anyone has any information
    about using JAVA with Forte, I would appreciate it greatly. Thanks.

    I will be presenting at the Forum on a first stab at integrating Java/IIOP
    with Forte frameworks on 5/13 at 4:15pm (if you're going to be there.) Forte
    will also be presenting on general IIOP/Forte interaction in a separate
    presentation (I'm not sure when their presentation is.)
    -DFR
    Bryan Gentile <[email protected]> on 05/05/97 10:35:43 AM
    To: forte-users <[email protected]> @ INTERNET
    cc:
    Subject: Forte and the Web
    I was wondering if anyone has developed Forte applications on the web using
    JAVA rather than the HTML based WebSDK stuff? If anyone has any information
    about using JAVA with Forte, I would appreciate it greatly. Thanks.
    ------ Message Header Follows ------
    Received: from pebble.Sagesoln.com by notes.bsginc.com
    (PostalUnion/SMTP(tm) v2.1.9c for Windows NT(tm))
    id AA-1997May05.113135.1771.264872; Mon, 05 May 1997 11:31:36 -0500
    Received: (from sync@localhost) by pebble.Sagesoln.com (8.6.10/8.6.9) id
    IAA11563 for forte-users-outgoing; Mon, 5 May 1997 08:39:56 -0700
    Received: (from uucp@localhost) by pebble.Sagesoln.com (8.6.10/8.6.9) id
    IAA11557 for <[email protected]>; Mon, 5 May 1997 08:39:50 -0700
    Received: from gatekeeper.bdsinc.com(205.246.109.50) by pebble.sagesoln.com via
    smap (V1.3)
    id sma011555; Mon May 5 08:39:32 1997
    Received: from Bryan.bdsinc.com ([192.9.201.78]) by gatekeeper.bdsinc.com
    (8.6.10/8.6.9) with SMTP id LAA10419 for <[email protected]>; Mon, 5 May
    1997 11:42:51 -0400
    Message-Id: <[email protected]>
    X-Sender: [email protected]
    X-Mailer: Windows Eudora Pro Version 2.2 (32)
    Mime-Version: 1.0
    Content-Type: text/plain; charset="us-ascii"
    Date: Mon, 05 May 1997 11:39:03 -0400
    To: [email protected]
    From: Bryan Gentile <[email protected]>
    Subject: Forte and the Web
    Sender: [email protected]
    Precedence: bulk
    Reply-To: Bryan Gentile <[email protected]>

  • [1]Forte and the Web

    [1]Forte and the Web 4/17/96
    I will be out of town from 4/5 to 4/12. For issues concerning:
    TRACS - Please use the TRACS Support Beeper 973-5171
    Napa Migration - Paula Cue
    Regards,
    Jackie
    Date: 4/8/96 10:25 PM
    To: Jackie Lefton
    From: [email protected]
    I saw an article briefly explaining the forthcoming Forte Web Kit.
    Is there any more information available somewhere? The article
    stated that a few lines of code will be capable of transforming your
    app into a Web Application. How will it handle ArrayFields, window-
    nesting, and some of the other aspects of Forte that HTML/the
    Web does not support? What is the nature of the JAVA
    integration? Release date?
    John Werry
    MEDecision, Inc.
    ------------------ RFC822 Header Follows ------------------
    Received: by quickmail.apple.com with SMTP;8 Apr 1996 22:21:45 -0800
    Received: from sagesun.Sagesoln.com ([206.80.24.106]) by
    federal-excess.apple.com (SMI-8.6/8.6.12) with ESMTP id KAA13868; Tue, 9 Apr
    1996 10:20:14 -0700
    Received: (from majordom@localhost) by sagesun.Sagesoln.com (8.6.12/8.6.9) id
    KAA29574 for forte-users-outgoing; Tue, 9 Apr 1996 10:14:33 -0700
    Received: (from uucp@localhost) by sagesun.Sagesoln.com (8.6.12/8.6.9) id
    KAA29569 for <[email protected]>; Tue, 9 Apr 1996 10:14:30 -0700
    Received: from dub-img-1.compuserve.com(198.4.9.1) by sagesun via smap (V1.3)
    id tma029567; Tue Apr 9 10:14:08 1996
    Received: by dub-img-1.compuserve.com (8.6.10/5.950515)
    id LAA14028; Tue, 9 Apr 1996 11:37:03 -0400
    Date: 09 Apr 96 11:35:10 EDT
    From: John Werry <[email protected]>
    To: "'Inter Forte Mailing List'" <[email protected]>
    Subject: Forte and the Web
    Message-ID: <[email protected]>
    Sender: [email protected]
    Precedence: bulk
    Reply-To: [email protected]

    I will be presenting at the Forum on a first stab at integrating Java/IIOP
    with Forte frameworks on 5/13 at 4:15pm (if you're going to be there.) Forte
    will also be presenting on general IIOP/Forte interaction in a separate
    presentation (I'm not sure when their presentation is.)
    -DFR
    Bryan Gentile <[email protected]> on 05/05/97 10:35:43 AM
    To: forte-users <[email protected]> @ INTERNET
    cc:
    Subject: Forte and the Web
    I was wondering if anyone has developed Forte applications on the web using
    JAVA rather than the HTML based WebSDK stuff? If anyone has any information
    about using JAVA with Forte, I would appreciate it greatly. Thanks.
    ------ Message Header Follows ------
    Received: from pebble.Sagesoln.com by notes.bsginc.com
    (PostalUnion/SMTP(tm) v2.1.9c for Windows NT(tm))
    id AA-1997May05.113135.1771.264872; Mon, 05 May 1997 11:31:36 -0500
    Received: (from sync@localhost) by pebble.Sagesoln.com (8.6.10/8.6.9) id
    IAA11563 for forte-users-outgoing; Mon, 5 May 1997 08:39:56 -0700
    Received: (from uucp@localhost) by pebble.Sagesoln.com (8.6.10/8.6.9) id
    IAA11557 for <[email protected]>; Mon, 5 May 1997 08:39:50 -0700
    Received: from gatekeeper.bdsinc.com(205.246.109.50) by pebble.sagesoln.com via
    smap (V1.3)
    id sma011555; Mon May 5 08:39:32 1997
    Received: from Bryan.bdsinc.com ([192.9.201.78]) by gatekeeper.bdsinc.com
    (8.6.10/8.6.9) with SMTP id LAA10419 for <[email protected]>; Mon, 5 May
    1997 11:42:51 -0400
    Message-Id: <[email protected]>
    X-Sender: [email protected]
    X-Mailer: Windows Eudora Pro Version 2.2 (32)
    Mime-Version: 1.0
    Content-Type: text/plain; charset="us-ascii"
    Date: Mon, 05 May 1997 11:39:03 -0400
    To: [email protected]
    From: Bryan Gentile <[email protected]>
    Subject: Forte and the Web
    Sender: [email protected]
    Precedence: bulk
    Reply-To: Bryan Gentile <[email protected]>

  • Fire fow will not let me use curtain buttons and drop down menus for web sites. i had version 7.01 and upgraded to verson 8.02b and it did it on both of them. and the web pages work find if i use chrome

    Firefox will not let me use curtain buttons and drop down menus for web sites. i had version 7.01 and upgraded to verson 8.02b and it did it on both of them. and the web pages work find if i use chrome

    Do a clean reinstall and delete the Firefox program folder before (re)installing a fresh copy of the current Firefox release.
    Download a fresh Firefox copy and save the file to the desktop.
    *Firefox 21.0.x: http://www.mozilla.org/en-US/firefox/all.html
    Uninstall your current Firefox version, if possible, to cleanup the Windows registry and settings in security software.
    *Do NOT remove personal data when you uninstall your current Firefox version, because all profile folders will be removed and you will lose all personal data like bookmarks and passwords from profiles of other Firefox versions.
    Remove the Firefox program folder before installing that newly downloaded copy of the Firefox installer.
    *(32 bit Windows) "C:\Program Files\Mozilla Firefox\"
    *(64 bit Windows) "C:\Program Files (x86)\Mozilla Firefox\"
    *It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    *http://kb.mozillazine.org/Uninstalling_Firefox
    Your bookmarks and other personal data are stored in the Firefox profile folder and won't be affected by an uninstall and (re)install, but make sure that "remove personal data" is NOT selected when you uninstall Firefox.
    If you keep having problems then also create a new profile.
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *http://kb.mozillazine.org/Profile_backup
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Clean_reinstall

  • Oracle report 10g publsinng on web and Oracle Portal

    I am converting a report that was using oracle OAS9i, we pass to URL(rdf file) userid/password and worked fine. We were not using Portal, even though it is installed by OAS. Now seems we have to use Oracle Portal to publish the same report. Is that right? If not how will I use report servlet to call a rdf file I assume I still need to send oracle user id/password as that is needed to run report(knowing this from old Oracle report 6.0). We really do not want to autheticate any user all users behind use the same Oracle account to print reports. Any hint?
    Another thing I find that now reports are closely linked to Portal and looking at web publishing document it seems one needs to view them thru Portal. Please help me understand this why I can not just see the report as once they are processed they produce pdf that any borwser can show.

    Any one??

  • Oracle Reports Not working in Web Layout

    Hi,
    I am facing problem to run oracle reports in web layout working fine in paper layout. Please tell me the steps how to fix this problem?
    Regards,
    Waqar Shafique

    Hello,
    The easiest way to develop is to use the Report Builder Wizzard.Other example can be found in this note:
    How to Generate Excel output in browser using Reports9i JSP (Doc ID 240819.1)
    You can also search on google.
    For deployment check:
    How To Deploy And Run Oracle Reports JSP In 10G R2 AS? (Doc ID 334447.1)
    and if on 11g:
    Deployment of Web Layout Reports (JSP) in Reports 11g (Doc ID 1297790.1)
    Regards,
    Alex
    If someone answer helped please mark it accordingly.

Maybe you are looking for

  • A Function or BAPI to get Material Standard Price?

    Hi All, I need a Function or BAPI to get the Material Standard Price when the following Criteria is given; 1. Material Code 2. Plant 3. Period 4. Year 5. Company Currency (Optional) I need only the Standard Price and Price Unit. Please give me a exam

  • Content of BLOB column - Urgent

    Hi, I can not find a file that was uploaded using a Form Application in a BLOB column. Please could you tell me where do the file resides in the database after uploading?. If I query the table it does not appear. Thanks Mariela

  • Design view corrupted?

    I've been working on a few web pages in DW 9 on both my laptop (running mac OS 10.5–leopard) and my workstation (OS 10.4-tiger) I opened up the pages on my laptop after working on them all day on my workstation. Now the design view looks un-designed,

  • Restore original icons?

    I had been using Candybar free preview, didn't want to pay the $30, and now, well after the 2 week preview, I cannot restore my original icons. I've tried "command x".  What am I missing?  I have been pouring thru the FAQ's and I'm fed up.  I *will*

  • Defining 100 columns from single column

    hi all, i need to write an sp which returns many columns i have code ,name,candidates,mark(0-100) these are my columns in a table.. now i need to calculate columns 0-100 which mark having how many students..like code name     [ MARKS- 1]