How can I run Google Analytics on my site being hosted in Business Catalyst?

Hi,
I already have an existing website which is hosted, and of course I am the domain owner.
I have created a new modified site in Adobe Muse CC and will wish to upload this new site to my domain once completed.
I will need to run Google Webmaster tools etc before I replace the old site.
I do not wish to replace the old site as yet prior to completing the new site in Muse CC
At present I am "subscribed" to Google Analytics/Webmaster tools as a webmaster under my webmaster site (different) and have placed the "google verification code" metatag in my new site's "page properties <head></head tags only", and have uploaded to Business Catalyst.
Business Catalyst are not my hosts for this site once it becomes "live". They are my "Trial Hosts"
? how can I run google analytics and tools for this new site prior to lauch (ie replacing my old site) ?
Many thanks, await your response.
(PS... Latest Muse CC is ACE!... Love it!)

I finally figured out what I was doing wrong. First the information has to be entered on the home page. So the path is Home page> Page properties> Metadata> HTML for <head>. Secondly I was entering the information from the downloaded html file rather than the code they provide  under the alternate methods tab during the verification process . Google has a fine set of video tutorials to walk you through. https://support.google.com/webmasters/answer/35179?hl=en&ref_topic=3162387
Thanks for all your help!
Paula

Similar Messages

  • How do I add the Google Verification code to my site being hosted in Business Catalyst?

    Not sure where to put the html google verification code in my Muse site? It's hosted on Bsiness Catalyst.
    thanks

    Hello,
    I have been searching for this question.
    I just created a simple holding page website on Muse and published it to BC, and I cannot seem to get the Google verification code functioning.
    I inserted the code into the Metadata HTML section - but all I pasted into that box is:
    google8b088c7b491d3d36.html
    Is that the wrong format/incomplete code?
    Do I ALSO need to do something within the BC side? If so, where do I access the index/homepage from there, and where do I edit its HTML?
    Thank you!

  • How can i have google as a starting site in new tabs?

    When i want to open a new tab, i'd like it to open google-search as starting site. Now the tab is empty.

    You can look at one of these extensions:
    * NewTabURL : https://addons.mozilla.org/firefox/addon/newtaburl/
    * New Tab Homepage : https://addons.mozilla.org/firefox/addon/new-tab-homepage/

  • How can I create a Online Store using Muse? (with not Business Catalyst)

    How can I create a Online Store using Muse with not Business Catalyst for example three services
    _ttps://orders.self-pub.net/checkout.php?m=fastcheckout
    _ww.self-pub.net/services/covers.html

    Hi,
    Unfortunately there is no option stand alone in Muse to create an online store. However if any hosting plan uses CMS feature like Business Catalyst and ecommerce using modules and tags, you can use the same proceedure as for Business Catalyst and integrate that system and host the Muse site on their platform and that would work.
    There is other thing that you can try is, Insert HTML codes to link the pages and some contents in Muse to your desired CMS. What you can also do is after you create the site in Muse, you can export the Muse site and get the layout and design of your site and copy paste the codes for pages with some HTML and coding skills to integrate with your desired hosting.
    Hope this helps.
    Regards,
    Rajan

  • Firefox connects to google-analytics for some sites, and then gets stuck, and I can never get onto the site. How do I prevent Firefox from connecting to google-analytics? I use XP with service pak 3 in English

    Firefox connects to google-analytics for some sites,when i click on links in websites or emails and then gets stuck, and I can never get onto the site. Or opens a new bower behind the one i'm usind that's blank i don't even know it's there untill i close the one i'm using. How do I prevent Firefox from connecting to google-analytics? Or opening a blank bowser behind the one i'm using. I use XP with service pak 3 in English
    == This happened ==
    A few times a week
    == a couple months ago

    I got the same issue.
    I go on a website and all the sudden another window pops up with "results.google-analytics.com" or "search.google-analytics.com". It has often ads for other sites for example. black single dating site
    how can I can I stop that from happening again?
    I didn't download or do anything, just visit websites, that I visit on a regular basis.
    OS: Windows XP
    Firefox Version: 3.6.6

  • How can I run two DML in one FORALL statement?

    How can I run 1) select 2) update in one FORALL for each item as below?
    OPEN FXCUR;
      LOOP
            FETCH FXCUR BULK COLLECT INTO v_ims_trde_oids LIMIT 1000;
            EXIT  WHEN v_ims_trde_oids.COUNT() = 0;
         FORALL i IN v_ims_trde_oids.FIRST .. v_ims_trde_oids.LAST     
              SELECT EXTRACTVALUE(XMLTYPE(CNTNT),'/InboundGTMXML/ProcessingIndicators/ClientCLSEligibleIndicator')        INTO v_cls_ind
              FROM IMS_TOMS_MSGE  WHERE ims_trde_oid = v_ims_trde_oids(i);
             IF v_cls_ind      IS NOT NULL THEN
                      v_cls_ind       := '~2136|S|'||v_cls_ind||'|';
             UPDATE ims_alctn_hstry  SET CHNGE_DATA_1   =concat(CHNGE_DATA_1,v_cls_ind)
             WHERE ims_trde_hstry_id = (select max(ims_trde_hstry_id) from ims_alctn_hstry where ims_trde_oid=v_ims_trde_oids(i));
             DBMS_OUTPUT.PUT_LINE('Trade oid: '||v_ims_trde_oids(i)||'   CLS Eligible Indicator: '||v_cls_ind);
          END IF;
      END LOOP;
      CLOSE FXCUR;Your help will be appreciated.
    Thanks
    Edited by: PhoenixBai on Aug 6, 2010 6:05 PM

    I came through this forum while googling on the issue of 'using two DML's in one FORALL statement.
    Thanks for all the useful information guys.
    I need to extend this functionality a bit.
    My present scenario is as follows:
    FOR I in 1..collection1.count Loop
         BEGIN
              insert into tab1(col1)
              values collection1(I) ;
         EXCEPTION
              WHEN OTHERS THEN
              RAISE_APPLICATION_ERROR('ERROR AT'||collection1(I));
         END;
         BEGIN
              UPDATE tab2
              SET col1 = collection1(I);
         EXCEPTION
              WHEN OTHERS THEN
              RAISE_APPLICATION_ERROR('ERROR AT'||collection1(I));
         END;
    commit;
    END LOOP;
    I need to use the FORALL functionality in this scenario, but without using the SAVE EXCEPTIONS clause keeping in mind that I also need to get value in the
    collection that led to the error.Also, the each INSERT statement has to be followed by an UPDATE and then the cycle goes on(Hence I cannot use 2 FORALL statements for INSERT and UPDATE coz then all the INSERT will be performed at once and similarly the UPDATEs). So I created something like this:
    DECLARE
    l_stmt varchar2(1000);
    BEGIN
    l_stmt := 'BEGIN '||
              'insert into tab1(col1) '||
              'values collection1(I) ; '||
         'EXCEPTION '||
              'WHEN OTHERS THEN '||
              'RAISE_APPLICATION_ERROR(''ERROR AT''|| :1); '||
         'END; '||
         'BEGIN '||
              'UPDATE tab2 '||
              'SET col1 = :1; '||
         'EXCEPTION '||
              'WHEN OTHERS THEN '||
              'RAISE_APPLICATION_ERROR(''ERROR AT''|| :1); '||
         'END;'
    FORALL I in 1..collection1.count
    EXECUTE IMMEDIATE l_stmt USING Collection1(SQL%BULK_EXCEPTIONS(1).ERROR_INDEX);
    END;
    Will this approach work? Or is there any better aproach to this? I am trying to avoid the traditional FOR ..LOOP to achieve better performance of query

  • How can I make google my real default search engine?

    Yes, I have set Google as my preferred search engine in Safari Preferences.
    But when I try to do things such as define a word, it uses Bing.
    Frankly, I do not care for Bing.
    How can I make google always be my search engine?
    Thanks

    Here you go Andy.
    I did learn some things while looking at it.
    I need to clean out byTimemachine drive  :-)
    EtreCheck version: 1.9.11 (43) - report generated May 24, 2014 at 3:36:36 PM CDT
    Hardware Information:
              MacBook Pro (17-inch, Early 2011)
              MacBook Pro - model: MacBookPro8,3
              1 2.2 GHz Intel Core i7 CPU: 4 cores
              16 GB RAM
    Video Information:
              Intel HD Graphics 3000 - VRAM: 512 MB
              AMD Radeon HD 6750M - VRAM: 1024 MB
    System Software:
              OS X 10.9.3 (13D65) - Uptime: 0 days 4:36:5
    Disk Information:
              APPLE HDD HTS541075A9E662 disk0 : (750.16 GB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) / [Startup]: 651.3 GB (128.86 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
                        BOOTCAMP (disk0s4) /Volumes/BOOTCAMP: 98 GB (53.79 GB free)
              MATSHITADVD-R   UJ-8A8 
              ST1000LM024 HN-M101MBB disk1 : (1 TB)
                        EFI (disk1s1) <not mounted>: 209.7 MB
                        Time Machine (disk1s2) /Volumes/Time Machine: 999.86 GB (258.83 GB free)
    USB Information:
              Apple Inc. FaceTime HD Camera (Built-in)
              Apple Inc. BRCM2070 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Apple Inc. Apple Internal Keyboard / Trackpad
              Seagate FreeAgent GoFlex 1.5 TB
                        Photo Drive (disk3s1) /Volumes/Photo Drive: 1.5 TB (1.03 TB free)
              PNY Technologies USB 2.0 FD 32.18 GB
                        USB20FD (disk2s1) /Volumes/USB20FD: 32.18 GB (18.46 GB free)
              Apple Computer, Inc. IR Receiver
    Thunderbolt Information:
              Apple Inc. thunderbolt_bus
                        LaCie Rugged mini
    Gatekeeper:
              Mac App Store and identified developers
    Kernel Extensions:
              [kext loaded] com.AmbrosiaSW.AudioSupport (4.1.2 - SDK 10.6) Support
              [kext loaded] com.Cycling74.driver.Soundflower (1.5.3 - SDK 10.6) Support
              [not loaded] com.Ralink.driver.RT2870USBWirelessDriver (4.2.6 - SDK 10.6) Support
              [not loaded] com.elgato.driver.DontMatchAfaTech (1.1) Support
              [not loaded] com.elgato.driver.DontMatchCinergy450 (1.1) Support
              [not loaded] com.elgato.driver.DontMatchCinergyXS (1.1) Support
              [not loaded] com.elgato.driver.DontMatchEmpia (1.1) Support
              [not loaded] com.elgato.driver.DontMatchVoyager (1.1) Support
              [not loaded] com.mtk.driver.mXHCD (1.0.0) Support
              [not loaded] com.quark.driver.Tether (1.1.0d1) Support
              [kext loaded] com.quark.driver.Tether64 (1.1.0d1) Support
              [not loaded] com.realtek.driver.RTL8192SU (1066) Support
              [not loaded] com.realtek.driver.RTL8812AU (1021 - SDK 10.8) Support
              [not loaded] com.rim.driver.BlackBerryUSBDriverInt (0.0.52) Support
              [not loaded] com.rim.driver.BlackBerryUSBDriverVSP (0.0.45) Support
              [not loaded] com.roxio.BluRaySupport (1.1.6) Support
              [not loaded] com.roxio.TDIXController (2.0) Support
              [kext loaded] com.seagate.driver.PowSecDriverCore (5.2.2 - SDK 10.4) Support
              [not loaded] com.seagate.driver.PowSecLeafDriver_10_4 (5.2.2 - SDK 10.4) Support
              [kext loaded] com.seagate.driver.PowSecLeafDriver_10_5 (5.2.2 - SDK 10.5) Support
              [not loaded] com.seagate.driver.SeagateDriveIcons (5.2.2 - SDK 10.4) Support
              [not loaded] com.silabs.driver.CP210xVCPDriver (3.0.0d1) Support
              [not loaded] com.silabs.driver.CP210xVCPDriver64 (3.0.0d1) Support
              [kext loaded] com.symantec.kext.SymAPComm (12.6f28 - SDK 10.6) Support
              [not loaded] com.symantec.kext.filesecurity (2.6f32) Support
              [kext loaded] com.symantec.kext.fw (5.3f12) Support
              [kext loaded] com.symantec.kext.internetSecurity (5.3f6) Support
              [kext loaded] com.symantec.kext.ips (3.9.1f10) Support
              [kext loaded] com.symantec.kext.pf (5.6f22) Support
              [not loaded] com.wdc.driver.1394HP (1.0.5) Support
              [not loaded] com.wdc.driver.USBHP (1.0.1) Support
    Startup Items:
              WiFiUtilityStartUp: Path: /System/Library/StartupItems/WiFiUtilityStartUp
              ProTec6: Path: /Library/StartupItems/ProTec6
              ProTec6b: Path: /Library/StartupItems/ProTec6b
    Problem System Launch Agents:
              [loaded] com.paragon.NTFS.notify.plist Support
    Launch Daemons:
              [loaded] com.adobe.fpsaud.plist Support
              [loaded] com.ambrosiasw.ambrosiaaudiosupporthelper.daemon.plist Support
              [running] com.backblaze.bzserv.plist Support
              [loaded] com.bombich.ccc.plist Support
              [running] com.fitbit.galileod.plist Support
              [loaded] com.genieoinnovation.macextension.client.plist Support
              [loaded] com.google.keystone.daemon.plist Support
              [loaded] com.macpaw.CleanMyMac2.Agent.plist Support
              [running] com.micromat.TechToolProDaemon.plist Support
              [loaded] com.microsoft.office.licensing.helper.plist Support
              [loaded] com.oracle.java.Helper-Tool.plist Support
              [loaded] com.oracle.java.JavaUpdateHelper.plist Support
              [running] com.symantec.deepsight-extractor.plist Support
              [loaded] com.symantec.errorreporter-periodic.plist Support
              [loaded] com.symantec.liveupdate.daemon.ondemand.plist Support
              [loaded] com.symantec.liveupdate.daemon.plist Support
              [not loaded] com.symantec.nav.migrateqtf.plist Support
              [running] com.symantec.sharedsettings.plist Support
              [running] com.symantec.symdaemon.plist Support
    Launch Agents:
              [not loaded] com.adobe.AAM.Updater-1.0.plist Support
              [running] com.adobe.AdobeCreativeCloud.plist Support
              [running] com.epson.epw.agent.plist Support
              [running] com.genieoinnovation.macextension.plist Support
              [loaded] com.google.keystone.agent.plist Support
              [running] com.micromat.TechToolProAgent.plist Support
              [loaded] com.oracle.java.Java-Updater.plist Support
              [running] com.rim.BBLaunchAgent.plist Support
              [loaded] com.symantec.errorreporter-periodicagent.plist Support
              [loaded] com.symantec.nis.application.plist Support
              [running] com.symantec.uiagent.application.plist Support
              [not loaded] com.trendnet.wutility Support
              [running] Wlan.Software.plist Support
              [failed] WlanAC.plist Support
    User Launch Agents:
              [loaded] com.adobe.AAM.Updater-1.0.plist Support
              [loaded] com.adobe.ARM.[...].plist Support
              [loaded] com.adobe.ARM.[...].plist Support
              [running] com.akamai.single-user-client.plist Support
              [running] com.backblaze.bzbmenu.plist Support
              [loaded] com.genieo.completer.download.plist Support
              [loaded] com.genieo.completer.update.plist Support
              [loaded] com.macpaw.CleanMyMac2Helper.diskSpaceWatcher.plist Support
              [loaded] com.macpaw.CleanMyMac2Helper.scheduledScan.plist Support
              [loaded] com.macpaw.CleanMyMac2Helper.trashWatcher.plist Support
              [running] com.microsoft.LaunchAgent.SyncServicesAgent.plist Support
              [not loaded] ws.agile.1PasswordAgent.plist Support
    User Login Items:
              Garmin Express Service
              WeatherBug Alert
              GoFlex Home Agent
              iTunesHelper
              Dropbox
              Fitbit Connect Menubar Helper
    Internet Plug-ins:
              JavaAppletPlugin: Version: Java 7 Update 55 Check version
              Google Earth Web Plug-in: Version: 6.0 Support
              Default Browser: Version: 537 - SDK 10.9
              Flip4Mac WMV Plugin: Version: 3.2.0.16   - SDK 10.8 Support
              OfficeLiveBrowserPlugin: Version: 12.2.9 Support
              SlingPlayer: Version: (null) - SDK 10.6 Support
              AdobeAAMDetect: Version: AdobeAAMDetect 2.0.0.0 - SDK 10.7 Support
              FlashPlayer-10.6: Version: 13.0.0.214 - SDK 10.6 Support
              AdobePDFViewerNPAPI: Version: 11.0.07 - SDK 10.6 Support
              Silverlight: Version: 5.1.30317.0 - SDK 10.6 Support
              Flash Player: Version: 13.0.0.214 - SDK 10.6 Support
              iPhotoPhotocast: Version: 7.0
              QuickTime Plugin: Version: 7.7.3
              SharePointBrowserPlugin: Version: 14.4.1 - SDK 10.6 Support
              AdobePDFViewer: Version: 11.0.07 - SDK 10.6 Support
              CouponPrinter-FireFox_v2: Version: Version 1.1.7 - SDK 10.5 Support
              GarminGpsControl: Version: 4.0.4.0 Release - SDK 10.6 Support
              EPPEX Plugin: Version: 3.0.5.0 Support
              DirectorShockwave: Version: 12.0.4r144 - SDK 10.6 Support
    Safari Extensions:
              Translate: Version: 1.1
              Video Converter: Version: 3.0.0
              1Password: Version: 4.1.0
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
              AirPlay: Version: 2.0 - SDK 10.9
              AppleAVBAudio: Version: 203.2 - SDK 10.9
              InstantOn: Version: 7.1.2 - SDK 10.8 Support
              iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins:
              Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    User Internet Plug-ins:
              CitrixOnlineWebDeploymentPlugin: Version: 1.0.105 Support
              Google Earth Web Plug-in: Version: 7.1 Support
    3rd Party Preference Panes:
              Akamai NetSession Preferences  Support
              Backblaze Backup  Support
              EarthDesk  Support
              Flash Player  Support
              Flip4Mac WMV  Support
              Java  Support
              MagicMenu  Support
              MagicPrefs  Support
              Norton\nQuickMenu  Support
              Paragon NTFS for Mac ® OS X  Support
              Perian  Support
              TechTool Protection  Support
    Time Machine:
              Skip System Files: NO
              Mobile backups: OFF
              Auto backup: YES
              Volumes being backed up:
                        Macintosh HD: Disk size: 606.57 GB Disk used: 486.56 GB
              Destinations:
                        Time Machine [Local] (Last used)
                        Total size: 931.19 GB
                        Total number of backups: 43
                        Oldest backup: 2014-04-26 21:03:29 +0000
                        Last backup: 2014-05-24 20:28:32 +0000
                        Size of backup disk: Too small
                                  Backup size 931.19 GB < (Disk used 486.56 GB X 3)
              Time Machine details may not be accurate.
              All volumes being backed up may not be listed.
    Top Processes by CPU:
                  47%          bzfilelist
                   2%          WindowServer
                   0%          Dropbox
                   0%          Creative Cloud
                   0%          fontd
    Top Processes by Memory:
              279 MB          SymDaemon
              246 MB          AdobeAcrobat
              229 MB          mds_stores
              180 MB          com.apple.IconServicesAgent
              147 MB          Microsoft Database Daemon
    Virtual Memory Information:
              10.50 GB          Free RAM
              2.81 GB          Active RAM
              850 MB          Inactive RAM
              1.84 GB          Wired RAM
              1.65 GB          Page-ins
              0 B          Page-outs

  • How can i run .app executable  file

    Hi,
    While i was searching for my topic on google code, i found one project and i download that.
    But its "MyProject.app" with yellow cplored xcode sumbol and i can not run this file.
    Does any one know that how can i run this type of file. i want to run this project.
    And another question. I want to create executable file from my project like exe on windows. Is there any way to create this type of file????
    Thanks.

    vavdiyaharesh wrote:
    Hey,
    When i double click on .app file it quit and show me message like "The application project140 quit unexpectedly"........."
    So is there any problem in .app file?
    On your machine sure sounds like it.
    How can i create exe file and how can i pass -0 to compiler ..iu don;t see any option in xcode for that.....
    giove me solution...
    I think you'd be better off taking some training, or at least working through some of Apple's tutorials.
    http://developer.apple.com/documentation/developertools/conceptual/XcodeQuickTou r/qtintro/chapter_1_section1.html
    Thanks.
    You're welcome.

  • How to remove ghostery, google analytics, and yahoo toolbar? thx.

    Question
    how to remove ghostery, google analytics, and yahoo toolbar? thx.

    Ghostery and the Yahoo toolbar are extensions.<br />
    https://support.mozilla.com/en-US/kb/Uninstalling%20add-ons#w_how-to-uninstall-extensions-and-themes
    Google analytics is a service for webmasters which collects statistics about usage of their websites. Not sure how that would affect website users - unless you installed a GA extension. If you got it, it can be uninstalled just like the other two extensions.

  • How can I get google groups mail to appear in the Mail application on my iPhone 5?

    How can I get google groups mail to appear in the Mail application on my iPhone 5?

    Try to use the SearchReset extension to reset some preferences to the default values.
    *https://addons.mozilla.org/firefox/addon/searchreset/
    Note that the SearchReset extension only runs once and then uninstalls automatically, so it won't show on the "Firefox > Add-ons" page (about:addons).
    If you do not keep changes after a restart then see:
    *http://kb.mozillazine.org/Preferences_not_saved

  • How can i run unix script from my apex page

    how can i run unix script from my apex page and take the output of unix script as a hidden variable and display it on the report region of that page

    I had a requirement to run a Fortran program against some data that woudl be extracted from the database after the user set up their filtering criteria and made some additional input. SInce the program was to complex to conver to PL/SQL, we decided to try and invoke it from Apex. This is how I did it.
    1. I followed the steps in Tim Archer's excellent article "Oracle External Procedure to Run Host Commands" (http://www.timarcher.com/?q=node/9). If the link does nto work, google the article's title.
    Using this steps I created a function which accepts any OS command, including calling my own shell scripts, and runs them. I called my PL/SQL function "shell" instead of "USF_RUN_HOST_CMD " as Tim did in his example (step 9).
    2. In Apex,
    a. I created a button to run my shell command. (I named it P2_RUN_SHELL)
    b. I created a PL/SQL process whose source looks as follows:
    shell('/home/ackness/scripts/cr_xcf_file.sh > /tmp/cr_scfp_file.log');
    and which was conditioned on the the button P2_RUN_SHELL.
    It works like a charm.
    Note: since you can run your own scripts using this method, you can encapsulate a series of commands in a UNIX shell script and invoke that script from Apex. This allows you to be able to test or run you commands from the command line as well as Apex and makes it easier to develop/debug/enhance the scripts in the future.
    Ackness

  • How Can I Run A SQLJ Normal Project In SAP NWDS

    I have a question about SQLJ in SAP NWDS.
    1.I created a java dictionary project,and then create the table , then depoly it.it's ok.
    2.I created a java normal project including the above java dictionary project.
    3.I used the SQLJ tech in the java normal project,exporting the opensqllib.jar,sqljapi.jar,sqljc.jar,sqljimpl.jar.
    4.I coded the normal project,and export the project .jar,everything is ok.
    <b>5.But when i runed the project in NWDS,the error appeared:java.lang.NoClassDefFoundError: com/sap/sql/log/OpenSQLException
         at com.ezkj.deom.sqlj.MainApp.main(MainApp.java:21)
    Exception in thread "main"</b>
    How Can I Run A SQLJ Normal Project In SAP NWDS?
    PLS Help me and don't let me alone!

    Tony,
    Why not try to import your SQLJ project in SAP NWDS. Add all the jars mentioned to the project path both for compile time as well as runtime. Now try running he project. Once you are able to bypass java.lang.NoClassDefFoundError, you will get other errors related to SQL statements. These Oracle SQL statements needs to be converted to OpenSQL format.
    Chill out!!!
    Sukanta Rudra
    Note: If helpful, plz donate some points.

  • How can I run the report for different input values at the same time?

    Reports version: Report Builder 6.0.8.13.1
    Oracle version: Oracle8i Enterprise Edition Release 8.1.7.0.0
    I want to run the same report for different input parameter values and spool each o/p to different file and ftp to a server. For this, as a first step, I am spooling different input values in to a file, reading those values through a loop and calling the report for that input values. Each report run/execution is taking 15 minutes. Total report execution is taking approximately 4 hours (assuming 16 different input values) to complete. So I have to wait 4 hours to see ALL outputs.
    I would like to run the report parallel for ALL the input values and I should be able to see the ALL outputs with in 15 or 16 minutes.
    In my shell script, I added & symbol at the end of the report call to start/run the job in the background. Due to this the control passed to the next step after the report call. At this place I have an ftp command to send the output file to a different server and it is giving error some thing like “o/p file is not available/created yet". This is due to the fact that report writer is NOT yet completely started/initiated or it is NOT completed the spooling.
    How can I run the report at the same time for all the input values and save the time?
    Thanks in advance.
    Kishore.

    Increase the number of server engines running right now it seems there is only one engine running ,increase it to 4 or 6
    and then atleast 4 or 6 reports will run simultaneously.
    For FTPing the output add to your sript to check whether it is locked and if not then only try to ftp .
    Also for more better functionality read the document (chapter 15 ) for 10g reports for its new fuinctionality.
    http://download.oracle.com/docs/cd/B14099_17/bi.1012/b14048/toc.htm
    Thanks
    Subodh

  • How can I run 2 keynote presentations on 2 different macs with only one keyboard?

    How can I have 2 different keynote presentations that I want to run simultaneously through 2 different projectors, but I'd like to try and avoid using 2 keyboards - and use a hardware solution, rather than relying on my 2 fingers!! (it's a long conference!!!) thanks for any help.

    Open the CSS in DW, and use F10 to open the Code Inspector.
    Place the
    latter as needed.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Random_Yggdrasil" <[email protected]> wrote
    in message
    news:gi2htb$j4j$[email protected]..
    > How can I run 2 Dreamweaver windows at the same time on
    my PC?
    > basically I have 2 monitors and I want to edit CSS on
    one monitor and have
    > the
    > html page open on the other so I can quickly look from
    one to another with
    > in a
    > split second instead of taking that extra time to switch
    back and forth
    > using
    > the tabs at the top, I know I should probably invest
    into a mac so i can
    > work
    > out side of the Dreamweaver application window and I
    will in the future
    > but is
    > there any way i can do this on my windows XP pro PC?
    >
    > Thank you
    > Maurice
    >
    >
    >

  • How can I install Google Maps on IOS 6?

    Since I upgraded to IOS 6, Google Maps has been replaced by a poorer Apple version that doesn't support public transport. I want Google maps back. How can I install Google Maps on IOS 6 or downgrade to IOS 5?
    Thanks.

    Google Maps has not yet or does not look  like they are creating a standalone app at this time.
    It is not easy to downgrade, not recommended by Apple, very involved in order to do that. Again, not recommended.
    Use MapQuest for now if you are unhappy with Apple Maps. I was never happy with Google Maps, so I have been using MapQuest for a long time for all directions.

Maybe you are looking for

  • Want to move a file off my ipod to my authorized computer from my other authorized computer

    how do you move a file between authorized computers with ipod or with sharing?

  • Running a batch file on  a web server

    hi, i am facing a problem regarding running a batch file(with a java command in that file) on a web server. i am having a batch file which is running a chatapplication (this file is having a single line -- "java ChatServer 8080") i want to execute th

  • Package problems

    I wrote a pretty big program with a bunch of classes and i need to divide them into subdirectories for organization. I made the directories and placed the source .java files in the directory where they belong. My main application class, along with so

  • Thunderbolt to Ethernet Adaptor Issue

    Hello, These are the specs for the machine: Macbook Air Mac OS X 10.7.5 Processor 1.7 GHz Intel Core i5 4GB 1333 MHz DDR2 13-inch, Mid-2011 Recently, the owner of the machine bought a Thunderbolt to Gigabit Ethernet Adaptor, however, upon plugging it

  • Repeating frame not visible when the query returns no rows

    I've developed a report whose output looks like this: Subinventory | Part Code |Part Description |Ordered Qty | Received Qty Mentone St | BATT | non serialised item | | Mentone St | SONY | spare parts MIN MAX | 30| 0 In the above report subinventory,