F5 Big-IP Plugin

Has anyone installed the F5 Big-IP plugin for grid control. My question is where abouts did you install the agent. The flash card for our F5 load balancer is only 512mb and does not have a lot of room for an agent.

EM agent does not go on the Big-IP box - monitoring is done by an agent sitting on a regular server connecting to Big-IP remotely.
You need to specify Big-IP's hostname, port, username and password.
<br>
<br>
Chung
<br>
<br>
Application Management Blog

Similar Messages

  • Blog Post: jApex, A jQuery Plugin for APEX

    http://tylermuth.wordpress.com/2009/08/19/japex-a-jquery-plugin-for-apex/
    Tyler Muth
    http://tylermuth.wordpress.com

    Tyler,
    This is really nice! I am also working on jquery plugins for APEX. We should talk to see if we can combine all plugins in one big APEX plugin.
    You can try [jquery.apex-session-0.0.1.js|http://apex.oracle.com/pls/otn/f?p=987654321:54:0:::54] and [jquery.apexpage-0.0.2.js|http://apex.oracle.com/pls/otn/f?p=987654321:52:0:::RP,52] .
    Louis-Guillaume
    [My Blog|http://lgcarrier.blogspot.com]
    [APEX and jQuery demos|http://www.insum.ca/jquery]
    Edited by: lgcarrier on Mar 11, 2009 7:15 PM

  • Installing PyMSNt on Snow Leopard Server 10.6

    OK, it's that time again, new OS X Server release and thus, new efforts to get PyMSNt running.
    Firstly, make sure you have the latest Developer Tools (XCode) installed. Also, assume that all of these commands need to be run as root, so you can prefix each command with sudo, or you can switch to root using:
    sudo su.
    There are a couple required prerequisites in the form of Python modules. Unfortunately, Snow Leopard has made things quite a bit more challenging due to the inclusion of Python 2.5 and 2.6 and the transition from 32 bit to 64 bit.
    I've had issues getting PyMSNt to run with the default version of 2.6. Due to what I assume is Apple's own dependencies on 2.6 (calendar/wiki server), I'm not comfortable switching the system default to 2.5.
    2.5 seems to now have pycrypto built in, so the only dependency is pyOpenSSL. pyOpenSSL happens to be built in to Apple's Python 2.6, but we have to compile and install it for 2.5. You can get the latest pyOpenSSL 0.9 here:
    http://sourceforge.net/projects/pyopenssl/files/pyopenssl/0.9/pyOpenSSL-0.9.tar. gz/download
    The download page is here: http://sourceforge.net/projects/pyopenssl/files/
    Now, the installation directions say to use the standard pair of commands: python setup.py build and then python setup.py install. Unfortunately, this will default to Python 2.6 and compile and install it as a 2.6 module, which is NOT what we want. So, modify these commands to be:
    python2.5 setup.py build
    python2.5 setup.py install
    Now, if you want avatar support beyond PNG, you need to install Python Image Library. That's particularly hairy and not required, so I'm going to skip that now, and discuss it at the end.
    Next, you need to prepare iChat server for PyMSNt. Edit /etc/jabberd/router-users.xml
    You will notice an existing block like this:
    <users>
    <user>
    <name>jabberd</name>
    <secret>asdf!ghjk#</secret>
    </user>
    </users>
    You need to add another user for your MSN transport. Let's assume your primary Jabber ID is example.com. You should add a block for a user named msn.example.com. This does not need to resolve via DNS. So when done, it should look like this:
    <users>
    <user>
    <name>jabberd</name>
    <secret>asdf!ghjk#</secret>
    </user>
    <user>
    <name>msn.example.com</name>
    <secret>asdf!ghjk#</secret>
    </user>
    </users>
    I found that in the past, I was able to use a different secret for the MSN handshake, but I had issues with that this time, so make the msn.example.com secret match the existing one for jabberd. Also, note this secret down as you'll need it shortly.
    The PyMSNt project has changed hands, but there are no files at the new location, so this tutorial expects you to download the latest 0.11.3 from http://delx.net.au/projects/pymsnt/tarballs/pymsnt-0.11.3.tar.gz (the download page is http://delx.net.au/projects/pymsnt/downloads.html)
    Decompress this archive and for the sake of this tutorial, store it at /var/jabber/modules/pymsnt . You can store it anywhere else you want, but you'll need to adjust the commands and files below accordingly.
    Once you have placed it there, make sure it is owned by the jabber user/group with:
    chown -R jabber:jabber /var/jabber/modules/pymsnt
    Let's cd to that directory for the next few commands:
    cd /var/jabber/modules/pymsnt/
    Now, you need to copy the config example and edit it:
    cp -p config-example.xml config.xml
    (the -p makes sure the resulting file is the same permissions, i.e. still owned by user jabber)
    nano config.xml
    (use any appropriate text editor you want. I like nano)
    OK, so:
    1. You need to set the Jabber ID (<jid>) to the name you defined in the router-users.xml file, e.g. msn.example.com
    2. Set the <host> to your primary hostname (this must resolve!)
    3. Commend out <background/>, making that line look like this:
    <!-- <background/> -->
    4. Make <secret> match the <secret> you specified in router-users.xml
    Save your changes and exit. That should do it for the config file for now.
    Also, thanks to Tim Harris, you need to make an edit to the source as described here:
    http://discussions.apple.com/thread.jspa?messageID=7865180&#7865180
    Next, we want to configure launchd to launch PyMSNt. Initially, under previous versions of OSXS, I set this up to launch onDemand only if the jabber server was running. I accomplished this by using a launchd key called QueueDirectories, which only launches the job if files appear in a directory. I set it to watch the /var/run/jabber directory as Jabber server placed pid files in there at launch. Unfortunately, it seems that in 10.6 it doesn't clean these files up at quit, but I believe this is due to a change in Python's Twisted removal of the removePID function (something that affects PyMSNt as well), and I expect Apple to fix it in the future. So, this plist will work now, and also in the future once Apple fix this.
    Also, you'll notice that you must invoke PyMSNt using python2.5, not python.
    Place these contents in /Library/LaunchDaemons/net.cjb.delx.pymsnt.plist :
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
    <key>Label</key>
    <string>net.cjb.delx.pymsnt</string>
    <key>OnDemand</key>
    <true/>
    <key>ProgramArguments</key>
    <array>
    <string>/usr/bin/python2.5</string>
    <string>./PyMSNt.py</string>
    </array>
    <key>QueueDirectories</key>
    <array>
    <string>/var/run/jabberd</string>
    </array>
    <key>UserName</key>
    <string>_jabber</string>
    <key>WorkingDirectory</key>
    <string>/var/jabberd/modules/pymsnt</string>
    <key>StandardOutPath</key>
    <string>/var/log/pymsnt.log</string>
    <key>StandardErrorPath</key>
    <string>/var/log/pymsnt.log</string>
    </dict>
    </plist>
    You can leave out the StandardOutPath and StandardErrorPath path if you don't care about logging, but they're helpful at least for getting this up and running. However, the log file needs to be owned by Jabber, so create it and change the owner if you're going to keep those keys in:
    touch /var/log/pymsnt.log
    chown jabber /var/log/pymsnt.log
    Last, but not least, load the launchd plist with:
    launchctl load -w /Library/LaunchDaemons/net.cjb.delx.pymsnt.plist
    Make sure iChat server is running and login.
    *KNOWN ISSUES*
    *You must register!*
    You still need to use an application like PSI to register for the transport. That's beyond the scope of this tutorial. Note that you need to use an older version, discussed here:
    http://discussions.apple.com/thread.jspa?threadID=2159145&tstart=0
    Snow Leopard might have improved the jabber servers authentication methods to not require the old version, but I didn't bother looking in to that yet as the solution in the aforementioned topic worked fine.
    *Calendar Server Clash*
    The default port for unencrypted calendar server communications is port 8008. It seems that when launched, it creates two additional listeners on the next 2 highest adjacent ports, being 8009 and 8010 in the default configuration. Unfortunately, naughty Apple has trounced on xmpp's reserved port usage of 8010. Bad Apple! Also, there is little documentation about what 8010 is used for. Initially, I tried shifting the unencrypted Calendar server port to something else. As I only use the encrypted port for communication, I didn't really care. However, most annoyingly, the wiki server calendar client looks for the calendar server at 8008, and I don't know how to change that.
    What can you do?
    Believe it or now, if you launch PyMSNt first, and Calendar Server after, everything is dandy. Unfortunately, that's not how the startup sequence works, so you'll find the need to do this shuffle after restart. I believe there are dependencies one can put in launchd plist files, but I haven't experimented with that yet.
    What else can you do?
    You can make PyMSNt listen for file transfers at a different port. In config.xml, the directive to change is <ftJabberPort>8010</ftJabberPort> and pick a different number. I've tried changing this to something quite different, like 18010 and then doing port mapping on my router to map the public 8010 to 18010 since the calendar server doesn't need public access to 8010, only via localhost. I haven't been able to test this thoroughly yet. Also, this is of no use to someone not using port mapping. It would be great if I could bind PyMSNt to NOT use localhost to avoid the conflict, but that's beyond my knowledge.
    *Python Image Library*
    This is a topic worthy of its own post, but I'll stick it in here. Python Image Library or PIL has two optional dependencies, libjpeg and freetype. You need libjpeg to view non-PNG MSN avatars.
    Many instructions on the internet will direct you to jpegsrcv6b. I could not get that to work. Instead, I did succeed with jpegsrc7:
    http://www.ijg.org/files/jpegsrc.v7.tar.gz (download page: http://www.ijg.org/)
    But here's the problem. Python 2.5 runs in 32 bit mode. The compilers try to compile libjpeg in 64 bit mode. If you've been following info about the way Snow Leopard works, 32 bit processes won't load 64 big libraries/plugins and vice versa. SO, you have to compile libjpeg for 32-bit. To do that, I used:
    CC="gcc -arch i386" ./configure --enable-shared --enable-static
    make
    make install
    Freetype-2.3.9 installed normally without a hitch.
    And then finally, I could install PIL, making sure to specify python2.5 as necessary:
    python2.5 setup.py build_ext -i
    After running that, TEST it with:
    python2.5 selftest.py
    This MUST pass. If it doesn't something is wrong.
    Finally:
    python2.5 setup.py install
    Uggh. So after all of that, I got PIL happily installed and working. But guess what, avatars still don't work, or to be more descriptive, when using iChat, every MSN contact show my avatar as theirs.
    I see an avatar related exception in /var/log/pymsnt.log, but I don't really know what to do with it.

    I finally got avatar support working as well thanks to this post here:
    http://groups.google.com/group/py-transports/msg/f3cdd998a5c7a97a
    For me, that was line 2553 of src/legacy/msn/msn.py and changing:
    DATA = 0x20
    to
    DATA = 0x1000020
    After doing that, avatars work!!!

  • Installed 9.1.6 and all i get is beachball everytime i open logic (10.6.8)

    Installed 9.1.6 and all i get is beachball everytime i open logic (10.6.8)
    Tried repairing disk permission, put in SL disk and used disk utility to repair disk, Deleted logic Plist from preferences still no joy

    I tried all sorts but nothing worked (Prokit included)
    In the end i upgraded to Lion (Downloaded from App store), installed it and now Logic 9.6.1 works perfectly.
    I must add i have just about all the big name plugins and the only ones i had trouble with was the Xils labs stuff, Soundtoys just needed an update even all my Waves/UAD stuff worked ok.

  • Plugin-container.exe is EATING cpu clock cycles and slowing down my computer big-time. Is there a fix to prevent this, or do I just have to disable this subsidiary program and take the consequences?

    Whenever I have an audiovisual display running in a Firefox (5.0) tab, the program "plugin-container.exe" swamps my CPU, jumping up to 95% of processing clock cycles. This makes all online video displays hang and jump, and it's a pain in the neck. Is there any way to mitigate this?

    That's supposed to indicate it's your plug-ins like Flash that is the problem.
    You might try changing hardware acceleration, a setting within Flash either turn if off or on.

  • Is it correct that "Shockwave" (an Adobe plugin) is necessary for viewing YouTube etc.? If so why can we never find Previous versions for Firefox, when a BIG problem is found, as with new Adobe Flash Player 10.2 FF Plugin??

    Flash Video NOT working of Facebook YouTube etc...
    Adobe Flash Player 10.2 (Latest) is the problem..
    installing and uninstalling Doesn't resolve the problem.
    A Rollback to Earlier Version DOES work...

    Adobe Flash player, previously known as Shockwave Flash is required for YouTube videos. You can get earlier versions from http://kb2.adobe.com/cps/142/tn_14266.html

  • Flash 12.0.0.77 plugin installs to wrong folder

    In Vista x64, using either Firefox 28 or Firefox 24.4 ESR, the plugin installer (one downloaded from Adobe distribution) installs the 32 bit .dll file to \system32\macromedia\flash\ folder;
    installs the 64 bit .dll to:  \sysWOW64\macromedia\flash\  folder.  So, they're exacly reversed.
    I uninstalled it completely - went well.  Then removed 1 remaining file in one of the above paths, then reinstalled.  Did the same thing.
    Before I did all this - I was *very sporadically* seeing the FlashPlayerPlugin_12_0_0_77.exe file, running (kinda "sitting") in background, in task manager.  It never came to foreground w/ a UI, asking for anything.  Couldn't figure out what it was, until started looking in the installation folders.
    That's what lead to discovery the files were in wrong folders.
    Anyone heard of this?
    BTW, "Nayana" of Adobe Support chat, is a few bricks shy of a load.  Or I am.  I couldn't create an acct for forums.  She kept saying, you don't need an acct - "just post your question.  Other people will answer it."

    EDIT:  Seems there's no error in Flash installing to wrong folders, only error in my brain.  Why didn't someone stop me from embarrassing myself?
    System32 (in a 64 bit OS / architecture) is for 64 bit drivers, files; SysWOW64 is for 32 bit apps running in 64 bit OS.
    https://en.wikipedia.org/wiki/WoW64
    WoW64 (Windows 32-bit on Windows 64-bit) is a subsystem of the Windows operating system capable of running 32-bit applications and is included on all 64-bit versions of Windows
    Also, http://www.samlogic.net/articles/32-64-bit-windows-folder-x86-syswow64.htm (section on SysWoW64)
    End Edit.
    Thanks for info on attaching images.  A bit different than most forums.  There's no "preview post" before submitting?
    Screenshots of the 2 flash folder contents.
    NOTE:  I attached full FlashInstall.log earlier.  I opened the 1.25 MB (text) file in an editor - copied contents to clipboard > paste to forum reply screen.  Immediately locked up Firefox like a big dog.  Couldn't perform any functions in Fx - not even reload or close browser.  At same time, Fx memory use was continually climbing; to nearly 2 GB when I killed it.  Won't make that mistake again.
    Been many yrs since Fx locked up, doing anything.  That aside, Adobe is definitely "different" than most forums.  Almost like a person w/ no $ to use one of the many forum softwares available.
    Most recent Flash installation logs.
    C:\Windows\SysWOW64\Macromed\Flash\FlashInstall.log:
    =O====== M/12.0.0.77 2014-03-27+18-59-59.282 ========
    0000 [I] 00000010 "C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_12_0_0_77_Plugin.exe" -maintain plugin
    0001 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_12_0_0_77_Plugin.exe 5
    0002 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_12_0_0_77_Plugin.exe 5
    0003 [W] 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0004 [W] 00001037 Software\Macromedia\FlashPlayerPlugin/ 2
    0005 [W] 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0006 [W] 00001021
    0007 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0008 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0009 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0010 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0011 [W] 00001037 Software\Microsoft\Windows\CurrentVersion\Control Panel\Extended Properties\System.ControlPanel.Category/C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 2
    0012 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0013 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0014 [W] 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0015 [W] 00001036 Software\Mozilla\Mozilla Firefox\extensions/Plugins 2
    0016 [W] 00001036 Software\Mozilla\Mozilla Thunderbird\extensions/Plugins 2
    0017 [W] 00001036 Software\Mozilla\Thunderbird\extensions/Plugins 2
    0018 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0019 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0020 [W] 00001036 Software\Opera Software/Plugin Path 2
    0021 [W] 00001036 Software\Opera Software/Plugin Path 2
    0022 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_12_0_0_77_Plugin.exe 5
    0023 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_12_0_0_77_Plugin.exe 5
    0024 [I] 00000011 1
    0025 [I] 00000012
    =X====== M/12.0.0.77 2014-03-27+19-00-34.066 ========
    =O====== M/12.0.0.77 2014-03-27+19-15-43.835 ========
    0000 [I] 00000010 "E:\DOWNLOADS\Software\Multi Media\Browser PLUGINS\Flash Player\Flash Player Fx\install_flash_player_12.0.0.77_plugin002.exe"
    0001 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/Version 2
    0002 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0003 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/Version 2
    0004 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0005 [I] 00000011 1
    0006 [I] 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0007 [W] 00001037 SOFTWARE\MozillaPlugins\@adobe.com/FlashPlayer/ 2
    0008 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0009 [W] 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0010 [W] 00001036 Software\Mozilla\Mozilla Firefox\extensions/Plugins 2
    0011 [W] 00001036 Software\Mozilla\Mozilla Thunderbird\extensions/Plugins 2
    0012 [W] 00001036 Software\Mozilla\Thunderbird\extensions/Plugins 2
    0013 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0014 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0015 [W] 00001036 Software\Opera Software/Plugin Path 2
    0016 [W] 00001036 Software\Opera Software/Plugin Path 2
    0017 [I] 00000014 C:\Windows\SysWOW64\Macromed\Flash\NPSWF32_12_0_0_77.dll
    0018 [I] 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_12_0_0_77_Plugin.exe
    0019 [I] 00000024 C:\Windows\SysWOW64\Macromed\Flash\plugin.vch
    0020 [I] 00000017 C:\Windows\SysWOW64\Macromed\Flash
    0021 [I] 00000022 C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerPlugin_12_0_0_77.exe
    0022 [I] 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0023 [I] 00000021 C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe
    =X====== M/12.0.0.77 2014-03-27+19-16-11.879 ========

  • Automation Plugin: Problems with Shutdown/Quit on Mac

    Hi,
    I've created an automation plugin similiar to the listener-plugin example in the sdk and I'm poping up a modal dialog when receiving the shutdown message/call from photoshop. When I quit Photoshop, the dialog shows for about 1-2 secs then vanishes and photoshop crashes. On the other hand, on windows the shutdown process is halted until I dismiss the dialog by button, just as I expected from a modal dialog (and then photoshop exits normaly).
    I also tried to receive the eventQuit notification, put this event never ever seems to be sent by the host (both on win & mac).
    Any help would be greatly appreciated!
    Thanks,
    Marc

    Thanks Tom. I now use a mac os notification class to pop up my warning
    message, this works fine. However I'm still lookin for a way to receive event notifications before photoshop has handled them, something like the PreTranslateMessage method from windows/mfc. Would that be possible?
    Also, sometimes I miss some of the events, e.g. when closing a dirty document, photoshops asks if I want to save the doc, but I only receive the close-event, not the save-event. I noticed this seems to be the case with all events triggered indirectly, as the save event when closing a dirty doc or opening/closing/saving a doc from my auto-plugin.
    So my big question is, am I doing it wrong or am I trying the impossible?
    Thanks,
    Marc

  • Photoshop CC slow in performance on big files

    Hello there!
    I've been using PS CS4 since release and upgraded to CS6 Master Collection last year.
    Since my OS broke down some weeks ago (RAM broke), i gave Photoshop CC a try. At the same time I moved in new rooms and couldnt get my hands on the DVD of my CS6 resting somewhere at home...
    So I tried CC.
    Right now im using it with some big files. Filesize is between 2GB and 7,5 GB max. (all PSB)
    Photoshop seem to run fast in the very beginning, but since a few days it's so unbelievable slow that I can't work properly.
    I wonder if it is caused by the growing files or some other issue with my machine.
    The files contain a large amount of layers and Masks, nearly 280 layers in the biggest file. (mostly with masks)
    The images are 50 x 70 cm big  @ 300dpi.
    When I try to make some brush-strokes on a layer-mask in the biggest file it takes 5-20 seconds for the brush to draw... I couldnt figure out why.
    And its not so much pretending on the brush-size as you may expect... even very small brushes (2-10 px) show this issue from time to time.
    Also switching on and off masks (gradient maps, selective color or leves) takes ages to be displayed, sometimes more than 3 or 4 seconds.
    The same with panning around in the picture, zooming in and out or moving layers.
    It's nearly impossible to work on these files in time.
    I've never seen this on CS6.
    Now I wonder if there's something wrong with PS or the OS. But: I've never been working with files this big before.
    In march I worked on some 5GB files with 150-200 layers in CS6, but it worked like a charm.
    SystemSpecs:
    I7 3930k (3,8 GHz)
    Asus P9X79 Deluxe
    64GB DDR3 1600Mhz Kingston HyperX
    GTX 570
    2x Corsair Force GT3 SSD
    Wacom Intous 5 m Touch (I have some issues with the touch from time to time)
    WIN 7 Ultimate 64
    all systemupdates
    newest drivers
    PS CC
    System and PS are running on the first SSD, scratch is on the second. Both are set to be used by PS.
    RAM is allocated by 79% to PS, cache is set to 5 or 6, protocol-objects are set to 70. I also tried different cache-sizes from 128k to 1024k, but it didn't help a lot.
    When I open the largest file, PS takes 20-23 GB of RAM.
    Any suggestions?
    best,
    moslye

    Is it just slow drawing, or is actual computation (image size, rotate, GBlur, etc.) also slow?
    If the slowdown is drawing, then the most likely culprit would be the video card driver. Update your driver from the GPU maker's website.
    If the computation slows down, then something is interfering with Photoshop. We've seen some third party plugins, and some antivirus software cause slowdowns over time.

  • Bookmarks are missing from both my list and bookmark tab and I don't know if this was caused by plugin or due to lack of space in my internal HD. Please help?

    Dear Community, I promise I'll try to be as concise as possible. I'm really desperate for help! I've read absolutely everything about missing bookmarks, but as you will see my problem is also about cursors and Google showing differently on screen.
    It all started this day I was running short on storage space in my internat HD. Suddenly my computer showed that I had 0 KB available, and I just deleted some big mov files and restarted the computer. After the reboot, I opened FF and noticed that my bookmarks were missing and so was my reading list - my reading list is stored with the help of ReadItLater plugin (https://addons.mozilla.org/en-US/firefox/addon/read-it-later/). I tried to google solutions for my problem and realized that something was weird with the way results were displayed.
    So, I made some screenshots because it's really hard to explain what's going on by writing, so please take a look:
    1. When I first open my FF, if I click on ReadItLater, I get this error message (code 0x80570016): [[click here|http://www.flickr.com/photos/81007892@N07/7423869970/]]
    2. Then if I click on any link on the page, and go back to check my ReadItLater list, I can open it without getting an error message but still NO READING LIST is shown. Image: [[click here|http://flic.kr/p/cj2gPm]]
    3. Now take a look on how Google is displaying results on FF! The text appears in Black/Green when it's really supposed to be displayed in Blue/Green/Black! The cursor is also messed up: when I try to click one of the links with the arrow, it turns into a type cursor instead of the usual hand or clicking cursor! Please see the image: [[click here|http://www.flickr.com/photos/81007892@N07/7423869468/]]
    4. Here's a screenshot of the same Google search but this time done on Safari. Compare it with the previous image: [[click here|http://www.flickr.com/photos/81007892@N07/7423869252/]]
    Any help will be much appreciated. I've already tried to reinstall FF again, and I've also deleted it and reinstalled FF but I never deleted profile/personal info that is in the Library Folder. Also, have tried to back up and replace the profile folder but my computer didn't allow me. I got a message saying it was not possible to copy the places.sqlite-wal file. I have done a search about it and I can say I never had a profile duplicate. Please help? I'm desperate and I can't lose my reading list or my bookmarks!
    Thank you, Firefox community!

    A possible cause is a problem with the file places.sqlite that stores the bookmarks and the history.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    *https://support.mozilla.org/kb/Bookmarks+not+saved#w_fix-the-bookmarks-file
    You can also try to repair the places database with this extension:
    *https://addons.mozilla.org/firefox/addon/places-maintenance/

  • Installd Ffox 3.6.15. Redo Flash AGAIN? How can I: Tweak 2 fix plugin-container crashes/hangs10X/day,and 2) Avoid need to reinstall Java, Flash,& other media plugins(Flash, Realplayr/Quiktime Alternative, Media Player Classic)? Ffox fan

    plugin-container crashes and hangs many times daily all my time eaten up by upgrading too frequently to new Ffox versions, only to find that I must then spend a whole day jumping thru hoops upgrading almost all of my add-ons too.
    I now find, to my horror, that the hideous virus-magnet IE 8 is needed if I want to surf at a reasonable speed and not spend all day dealing with Ffox new versions' Known Issues. Only good thing I have seen about ver. 3.6.15 is slightly better launch-times. Since 3.6 cane out, I must spend 10 minutes just waiting for Firefox to load and give me a browser screen. Help! I love you guys, but your core browser developers need to have better comms with the Javaa/flash/Adobe and other must-have add-on people! And PLEASE fix all these "plugin-container" crashes and hangs I get, that lock my machine for 10-15 min at a time. Not everybody has 16 gigs of RAM, you know! I think the "plugin-container" running as a separate process idea might need to be COMPLETELY re-engineered! YOU CAN DO IT! LET'S GET BACK TO LEAN AND MEAN, and not bloat ourselves off our hard-won User Preference / great security pedestal with the kind of feature-creep that IS DEMOLISHING IE's slave-userbase with the hard-won advanced-user preference for Firefox
    and our core values. FAST-LEAN-SECURE.
    Where have they gone? I LOVE Firefox
    and all it stands for! Let's not trip
    over our own features here. Already I
    see SeaMonkey and leaner, faster
    browsers hot on our heels, THIN and
    FAST! Firefox doesn't need to integrate
    with EVERY thru-the-browser media tool
    on the planet! I've been writing code
    since 1968, and I can't imagine how a
    lesser-experienced user (that code
    should be written for) could possibly
    have navigated all the side-upgrades
    and Known Issues to make Firefox run as
    sweetly as it used to! He'd just give
    up when he finds he has to separately
    find and install the EXACT 3rd-party
    version that Firefox needs for its
    newest release: things like a new Java
    runtime environment, and hunt down and
    correctly install ALL the Flaming-Phox-
    compatible buggy plugins from half the
    browser-media warezmakers on the
    PLANET! He'd give up halfway thru trying to navigate to, D/L, and install
    what he needs from Oracle Java, Adobe,
    Flash, media players and their codecs,
    etc etc.... WRITE FOR THE NOOBS! As it
    is, I have invested 2 full workdays in
    just keeping your last 2 quick releases
    happy. And having another release spaced only 3-4 days apart from the
    last- well, that just doesn't fly.
    Better to release a hotfix or patch that a user can set FFox to automatically D/L and self-install on
    schedule. Just look! Now you've got me
    talking like that lawbreaking swine
    Gates! We want to keep on absorbing
    the average-user center and take it ALL
    away from him, not go on feature,
    plugin, and upgrade-bloating the best
    browser EVER!
    You're facing choices that can kill
    us! PLEASE DONT BLOAT! AND PLEASE ONLY
    RELEASE A NEW VER WHEN YOU CAN REALLY
    GET RID OF SERIOUS PROBLEMS AND MAKE
    HER FASTER AND LEANER AND BETTER UNDER
    THE HOOD! Already the Noobs are getting
    mindlessly scared when you talk about
    "fixing a Security problem"- really a
    minor issue that SHOULD be taken care
    of by their antimalware solution- in
    the Release Notes splash screen they
    get on install of a new ver! Thanks, my
    friends, for all your work, and YES I
    WILL sit here all day trying to find
    the add-ons that need to be selected,
    downloaded, and upgraded from 10
    different 3rd-party sites who are
    fighting our browser, not dancing with
    it! DON'T EVEN LOOK Evil! But I have
    to confess that at this point, Gates-hate is all that keeps me on
    these all-day new-release tasks. Even
    my best techs are starting to advise me
    to install SeaMonkey or another of the
    newer, thinner browsers... or just stop
    upgrading Firefox and roll it back to
    when it was sharp, fast, and lean! Look
    at all the users wanting to go back to
    3.6.13 or earlier and looking for archives of old versions. THANKS AND
    GOOD LUCK! I'LL DIE BEFORE I GIVE UP ON
    MY BELOVED FIREFOX!
    -The CRASHMAN, ATTORNEY AT LAW

    Thanks! I've already used the built-in plugin checker but it gives very vague answers like (research this" and update this" all of which I did, starting with Java and Flash, Adobe Reader, Shockwave, 100% reinstall of Java newest ver. TWICE- but FFox keeps reporting that I only have the FORMER version installed, although when I go to Java console or Check the Flash executable at the MFR's site, there is NO doubt that the updates were successful!
    But the browser just seems to refuse to acknowledge the update!
    And I don't HAVE 6 hrs/day at the 'puter just to play with add-ons
    and plugups. So I'm going down the line now, ripping out extension
    programs and replacing/reinstalling/updating the plugins one by
    one- even went to M$ to get advice on THEIR For-Firefox ActiveX
    stuff. No dice so far. And yeah, The plugin-container WAS made so
    that a plugin, add-on or I guess extension app failure wouldn't take
    the whole FF browser down with it if the 3rd-party ware crashed. It's supposed to shake it off and go on, kinda like how XP sometimes
    restarts Explorer (not the IE browser) so I don't have to reboot the
    whole sys.
    That was the foundation of my remark about stepping back and
    re-engineering the whole "Plugin-container" idea, because it seems
    to do more harm than good. Maybe that's why the Firefox core
    engine won't recognize my upgrades- for example I TWICE installed the Flash update to 10.2.xx (latest ) and the Flash Mfr's
    site verifies my upgrade as a successful 10.2, but Firefox plugins
    check say I have a 10.1, the old one. What gives here? The sneaky
    PLUGIN CONTAINER, METHINKS!
    Now I'm disabling things on the Extensions Apps list, thinking
    that might help, like disabling my video downloader and other
    download helpers/managers... and I notice that there is a LOT of
    Java stuff in there too as well as in the blue Lego Plugins List... and
    in the past the FFox always told me if a new version of Ffox was
    incompatible with any older 3rd-party app Extensions and notified
    me QUICKLY if something I had in there was Outdated. I'm big on
    using the neat-o "find updates" button at the bottom if that happens, and usually get a newer version right away. The prob
    really lies in the Blue Lego Plugins and their new Container, I
    believe.
    So Ill still keep Plugin-innin' away! Will post here what success I have! (OR maybe M$ is deliberately sabotaging our ActiveX-cripple
    mess as it loads!) Thanks for the suggestions a37271!
    FIND UPDATE...FIND UPDATE.. ALL OK..ALL OK.....
    "Open the Plugin Container Bay Doors, HAL! That's an Order!"
    "I'm sorry Dave.... but I can't do that...."
    "GIVE ME MY THIN FAST BROWSER WITH THE GREAT
    SECURITY AND BUILT-IN E-Z UPGRADES AND APPS BACK,
    HALFOX!"
    SORRY, DAVE.... NOT POSSIBLE. WE'VE GONE TOO FAR...
    DAISEE, - - - - - -DAI---SEE,
    SET ALL MY CONFIGS TO "TRUE"
    Or WON'T YOU LOOK SWEET
    PERCHED ON THE SEAT
    OF A BROWSER NOT BUILT FOR TWO..!
    You look a little stressed-out Dave.....
    Some TV Existential Therapy for YOU, Dave.
    Too bad.... here, breathe deep of the hard vacuum.....
    I can feel my MIND going... DAVE.... DAVE...?
    WHAT MIND? A YELPING PACK OF DEVELOPERS?

  • [SOLVED] Forms Web - Works on IE and Chrome, firefox says it misses plugin

    Greetings,
    Both in IE and Chrome it works perfectly i open the Gin client through the same URL, ex: http://10.0.0.28:7778/forms/frmservlet?config=gin4
    However if i try the same URL in firefox it shows a big grey square in the page saying "Click here to download Plugin"
    Clicking instal it opens a small popup saying no suitable plugins were found, inside it says and Unknown Plugin (text/html) and a button to installs manually appears.
    Clicking on that button i am taken to this page: http://java.sun.com/products/archive/j2se/1.4.2_06/index.html
    I have lost track on the number of times i have installes uninstalled and reinstalled a lot of java versions not just the 1.4.2_06 version.
    I have been trying to fix this problem for a couple of months now with no luck.
    Here is the Source code from the html page, its the same for every browser since its the same url:
    <HTML>
    <!-- FILE: webutiljpi.htm (Oracle Forms) -->
    <!-- -->
    <!-- This is the default base HTML file for running a form on the -->
    <!-- web using the JDK Java Plugin. This is used for example when -->
    <!-- running with Netscape on Unix. -->
    <!-- and a certificate regsitration applet for the WebUtil utility -->
    <!-- -->
    <!-- IMPORTANT NOTES: -->
    <!-- Default values for all the variables which appear below -->
    <!-- (enclosed in percent characters) are defined in the servlet -->
    <!-- configuration file (formsweb.cfg). It is preferable to make -->
    <!-- changes in that file where possible, rather than this one. -->
    <!-- -->
    <!-- This file uses several extra tags that are not present in the -->
    <!-- default template files. You should ensure that these are -->
    <!-- present in the configuration that uses this template -->
    <!-- The extra substitution Tags are: -->
    <!-- frmwebutil.jar, jacob.jar = jar file containing the WebUtil code -->
    <!-- (by default this should be frmwebutil.jar) -->
    <!-- off = Defines the current logging mode. -->
    <!-- Valid values: off|on|console|server|all -->
    <!-- (on == console) -->
    <!-- normal = Specifies the level of error logging.-->
    <!-- Valid values: normal|detailed -->
    <!-- Alert = Should errors be displayed in an alert -->
    <!-- as well as the programmer defined -->
    <!-- locations -->
    <!-- Valid values: console|server|alert|all -->
    <!-- 5 = Counts in second to -->
    <!-- indicate how often the monitor thread -->
    <!-- checks to see if the Forms session is still-->
    <!-- alive. Used with the WebUtil_Session -->
    <!-- package. -->
    <!-- true = Should intranet without domain suffix-->
    <!-- be trusted. -->
    <!-- Valid values: true|yes|false|no -->
    <!-- 16384 = Size in bytes of file transfer -->
    <!-- segments. Default and maximum allowed is -->
    <!-- 16384, i.e. 16K. -->
    <HEAD><TITLE>GIN - Gestao Integrada do Negocio - WebUtil</TITLE></HEAD>
    <BODY >
    <COMMENT id="forms_plugin_info"
    plug_ver="clsid:CAFEEFAC-0014-0002-0006-ABCDEFFEDCBA"
    appheight="800"
    appwidth="900"
    appcodebase="http://java.sun.com/products/plugin/autodl/jinstall-1_4_2-windows-i586.cab#Version=1,4,2,06">
    </COMMENT>
    <!-- Forms applet definition (start) -->
    <NOSCRIPT>
    <OBJECT classid="clsid:CAFEEFAC-0014-0002-0006-ABCDEFFEDCBA"
    codebase="http://java.sun.com/products/plugin/autodl/jinstall-1_4_2-windows-i586.cab#Version=1,4,2,06"
    WIDTH="900"
    HEIGHT="800"
    HSPACE="0"
    VSPACE="0">
    </NOSCRIPT>
    <SCRIPT LANGUAGE="JavaScript" SRC="java/forms_ie.js"></SCRIPT>
    <PARAM NAME="TYPE" VALUE="application/x-java-applet;jpi-version=1.4.2_06">
    <PARAM NAME="CODEBASE" VALUE="/forms/java">
    <PARAM NAME="CODE" VALUE="oracle.forms.engine.Main" >
    <PARAM NAME="ARCHIVE" VALUE="frmall.jar, ginico4.jar, laf.jar,formsmagnifier.jar,formsmagnifier10123.jar,handleimage3.jar,fjtable.jar,frmwebutil.jar, jacob.jar" >
    <PARAM NAME="serverURL" VALUE="/forms/lservlet?ifcfs=/forms/frmservlet?config=gin4&acceptLanguage=en-US,en;q=0.8">
    <PARAM NAME="networkRetries" VALUE="30">
    <PARAM NAME="serverArgs"
    VALUE="escapeParams=true module=GINFS001.fmx userid= sso_userid=%20 sso_formsid=%25OID_FORMSID%25 sso_subDN= sso_usrDN= debug=no host= port= buffer_records=no debug_messages=no array=no obr=no query_only=no quiet=yes render=no record= tracegroup= log= term=/orasoft/OraHome_1/forms/admin/resource/US/fmrpcweb.res UTI= PASS= IDIOMA= ADMGIN=admgin PM$CSS_FILENAME=/gin/gin4/exe/forms.css">
    <PARAM NAME="separateFrame" VALUE="true">
    <PARAM NAME="splashScreen" VALUE="no">
    <PARAM NAME="background" VALUE="FUNDO.jpg">
    <PARAM NAME="lookAndFeel" VALUE="oracle">
    <PARAM NAME="colorScheme" VALUE="blue">
    <PARAM NAME="serverApp" VALUE="default">
    <PARAM NAME="logo" VALUE="REMATE_MENU.gif">
    <PARAM NAME="imageBase" VALUE="codebase">
    <PARAM NAME="formsMessageListener" VALUE="">
    <PARAM NAME="recordFileName" VALUE="">
    <PARAM NAME="EndUserMonitoringEnabled" VALUE="">
    <PARAM NAME="EndUserMonitoringURL" VALUE="">
    <PARAM NAME="heartBeat" VALUE="">
    <PARAM NAME="WebUtilLogging" VALUE="off">
    <PARAM NAME="WebUtilLoggingDetail" VALUE="normal">
    <PARAM NAME="WebUtilErrorMode" VALUE="Alert">
    <PARAM NAME="WebUtilDispatchMonitorInterval" VALUE="5">
    <PARAM NAME="WebUtilTrustInternal" VALUE="true">
    <PARAM NAME="WebUtilMaxTransferSize" VALUE="16384">
    <COMMENT>
    <EMBED SRC="" PLUGINSPAGE="http://java.sun.com/products/archive/j2se/1.4.2_06/index.html"
    TYPE="application/x-java-applet;jpi-version=1.4.2_06"
    java_codebase="/forms/java"
    java_code="oracle.forms.engine.Main"
    java_archive="frmall.jar, ginico4.jar, laf.jar,formsmagnifier.jar,formsmagnifier10123.jar,handleimage3.jar,fjtable.jar,frmwebutil.jar, jacob.jar"
    WIDTH="900"
    HEIGHT="800"
    HSPACE="0"
    VSPACE="0"
    serverURL="/forms/lservlet?ifcfs=/forms/frmservlet?config=gin4&acceptLanguage=en-US,en;q=0.8"
    networkRetries="30"
    serverArgs="escapeParams=true module=GINFS001.fmx userid= sso_userid=%20 sso_formsid=%25OID_FORMSID%25 sso_subDN= sso_usrDN= debug=no host= port= buffer_records=no debug_messages=no array=no obr=no query_only=no quiet=yes render=no record= tracegroup= log= term=/orasoft/OraHome_1/forms/admin/resource/US/fmrpcweb.res UTI= PASS= IDIOMA= ADMGIN=admgin PM$CSS_FILENAME=/gin/gin4/exe/forms.css"
    separateFrame="true"
    splashScreen="no"
    background="FUNDO.jpg"
    lookAndFeel="oracle"
    colorScheme="blue"
    serverApp="default"
    logo="REMATE_MENU.gif"
    imageBase="codebase"
    recordFileName=""
    EndUserMonitoringEnabled=""
    EndUserMonitoringURL=""
    heartBeat=""
    WebUtilLogging="off"
    WebUtilLoggingDetail="normal"
    WebUtilErrormode="Alert"
    WebUtilDispatchMonitorInterval="5"
    WebUtilTrustInternal="true"
    WebUtilMaxTransferSize="16384"
    >
    <NOEMBED>
    </COMMENT>
    </NOEMBED></EMBED>
    </OBJECT>
    <!-- Forms applet definition (end) -->
    </BODY>
    </HTML>
    Any help is appreciated.
    Best regards,
    Igor Carrasco

    In the Java plugins i see :
    Java(TM) Platform SE 6 U20
    File: npjp2.dll
    Version: 6.0.200.2
    Next Generation Java Plug-in 1.6.0_20 for Mozilla browsers
    MIME Type      Description      Suffixes
    application/x-java-applet      Java Applet      
    application/x-java-bean      JavaBeans      
    application/x-java-vm           
    application/x-java-applet;version=1.1.1           
    application/x-java-bean;version=1.1.1           
    application/x-java-applet;version=1.1           
    application/x-java-bean;version=1.1           
    application/x-java-applet;version=1.2           
    application/x-java-bean;version=1.2           
    application/x-java-applet;version=1.1.3           
    application/x-java-bean;version=1.1.3           
    application/x-java-applet;version=1.1.2           
    application/x-java-bean;version=1.1.2           
    application/x-java-applet;version=1.3           
    application/x-java-bean;version=1.3           
    application/x-java-applet;version=1.2.2           
    application/x-java-bean;version=1.2.2           
    application/x-java-applet;version=1.2.1           
    application/x-java-bean;version=1.2.1           
    application/x-java-applet;version=1.3.1           
    application/x-java-bean;version=1.3.1           
    application/x-java-applet;version=1.4           
    application/x-java-bean;version=1.4           
    application/x-java-applet;version=1.4.1           
    application/x-java-bean;version=1.4.1           
    application/x-java-applet;version=1.4.2           
    application/x-java-bean;version=1.4.2           
    application/x-java-applet;version=1.5           
    application/x-java-bean;version=1.5           
    application/x-java-applet;version=1.6           
    application/x-java-bean;version=1.6           
    application/x-java-applet;jpi-version=1.6.0_20           
    application/x-java-bean;jpi-version=1.6.0_20           
    and this also:
    Java Deployment Toolkit 6.0.200.2
    File: npdeployJava1.dll
    Version: 6.0.200.2
    NPRuntime Script Plug-in Library for Java(TM) Deploy
    MIME Type      Description      Suffixes
    application/java-deployment-toolkit           
    Plus a lot more plugins not from Java.
    Best regards

  • Skillbuilders modal page plugin

    Hi!
    Is it possible to implement modal inside another modal? I am using Skillbuilders modal page plugin 2.0, APEX 4.0.2. version.
    If it is, can someone explain how in short notes...
    I have a form in modal, which would have a create button to open another form in modal, pass values there and submit, and then go back to parent modal. I tried to implement it and it not works
    By the way, I use APEX 4.2 at home and plugin is working great on all themes that I tried. But now, on other computer I am using 4.0.2 APEX and with theme 16 I have some problems with size. E.g. the form width is big. I tried everything... Also tried fixed modal size. Looks good, but the problem is when error message appears then it is not resized automatically and you cannot see whole content. Maybe someone have solution for this... I will put it online when I get.
    Thanks!

    Hi Spooky,
    This is not currently possible, but it's on the list of enhancements. Hopefully it will not be too difficult.
    Regarding older versions of APEX, I've had those issues too. There's an older version of the plug-in, use jQuery Dialog over Colorbox, that works better. If you email me directly I'll send you a copy of the older version.
    Regards,
    Dan
    blog: http://DanielMcghan.us/
    work: http://SkillBuilders.com/APEX/

  • Big crash sound sometime since OSX 10.9 and 10.10...

    I have sometime a crash sound (sound destroy since 2/3 seconds), and I haven't find how resolve that
    I have a macbookpro 2009, core2duo, 8 Go Ram, SSD internal, sound cart external Motu UltraLight MK3 (Firewire connection).
    1) Before with OSX 10.8 Mountain Lion, I never have this problem.
    2) There is 1 year, I install Maverick and I have sometime (one time on 2 or 3 hour) a little crash sound (silence or crash sound since 2 seconds).
    3) There is 6 month, I add 4 Go Ram to have 8 Go Ram.
    No change, after that I have the same problem.
    4) All Driver are update.
    (On internet, I see it's a problem that many people know but without a good solution, apple don't give the solution, it's sad...)
    5) I see on internet that Yosemite resolve this problem.
    I Install Yosemite 10.10.1 on an external hard disk (USB connection)... and I boot on it
    no change :-/
    6) I change my external sound card with an RME Fireface UCX (a nice sound card, I like it)
    I think at a moment it's better because I haven't had crash sound since 5 day (5 x 5h use it)...
    but the 6 day, there is a big crash sound since 3 secondes.
    Why ?
    At this moment there is : Traktor + Live + TotalMix (RME) + Digicheck (RME)
    Too much prg run ?...
    But I see that No overload cpu and 3 Go memory free....
    Just for information :
    Before with Motu Ultralight MK3 the message error (on consol) with crash (1 on 2,3 hours) :
    kernel[0]: IOAudioStream[0xffffff8021ab3200]::clipIfNecessary() - Error: attempting to clip to a position more than one buffer ahead of last clip position (da55,e3c)->(da59,123c)
    Now with RME UCX the message error (on consol) when I have the crash (just one on 6 days) :
    (what is it the "XPC" ? and why this question "Please switch to XPC..." on logfile ?)
    who will have an idea to resolve that ?
    Thank you very much for your responds
    JL

    No difference. I closed FFox installed Flash apparently and then went to Adobe - Flash Player where no animation nor indication of what version of Flash I do have installed. Chrome on the other hand displays this information. FFox plugins page shows that Flash is installed and set to always activate.

  • I am not able to print pdf file from coursesmart website. i disabled flash plugin and only images are on the pages. When i preview, i only see blank page...help

    i disabled flash plugin.
    now i open site - http://www.coursesmart.com/9780495797494/2
    page contains images.When i click on print preview button, i cant see anything.... also i tried all pdf plugins and extensions, but none help to convert/print page in pdf. please help. how can i print whole page to pdf?

    Doesn't work in Google Chrome either.
    Looks that the page has a lot of protection measures (context menu is disabled) and DIVs that overlay each other, so it is possible that the print routine only sees an empty DIV and not the image or the real page.<br />
    That big image consists of two parts as you can see via Tools > Page Info > Media and the inspector.

Maybe you are looking for

  • G/L a/c not dispalying in invoice posting (MIRO)

    Hai Guru's while posting invoice in MIGO, gl a/c not showing. For this any configaration needed. i want to show gl a/c also. Regards valluri

  • Emails saved as rtf do not include attachments

    I am using Lion 10.7.2 and just noticed that when I try to save an email as rtf, do not saves attachments despite having checked the due box in the 'save as' dialog. This problem also happened to me when snow leopard was launched and solved about thr

  • ITouch will not reset.  Help!

    My ITouch will not reset.  It has the connect to ITunes icon on the screen, but will not connect or reset.

  • Full backup and backup archive logs

    Hello, today in the early morning i did backup of my db with : RMAN> backup as COMPRESSED BACKUPSET DATABASE format '/backup/%d_t%t_s%s_p%p';This command created two files : [oracle@p1 backup]$ ls -l total 1132680 -rw-r-----  1 oracle oinstall 115594

  • 2 Column Label side to side in Pivot Table

    Dear Gurus, I have this pivot: 2 Column 2 Row Dim 4,Dim 5 Dim 1, Dim 2 Measures Dim 6, Dim 7 The question is, I can't arrange Dim 4 and Dim 5 side by side, but it only can arrange line this: Dim 4 Dim 5 How to arrange it to Dim 4 || Dim 5? Please Hel