How we can make use of cache management using presentation services

hi all
how we can make use of cache management using presentation services
Thanks
Sreedhar

hi
i have one small question,
first time i have submitted a report and the data has come from database, second i have interchange the cols like col1 to col2 and col2 to col1 and i did col1/col2 will it comes from cache or will it come from database(my question is that any in memory calculations will be done by cache )
Thanks
Sreedhar

Similar Messages

  • How i can make web application by using oracle form6i

    how i can make web application by using oracle form 6i , indetail .
    A.R

    indetail .As Andy Millman might observe, you're having a laugh. This is a big topic, far exceeding what it is reasonable to expect people to help out with in a Forum. Do you not have the 6i documentation?
    OTN has a site for upgarding to web forms. Although it is mainly focussed on moving to 9i/10g a lot of the issues and solutions apply to moving a 6i client/server app to web deployment. For further help there is a Forms.
    Cheers, APC

  • How we can make use of logfiles to see users logdetails

    Hi all
    how we can make use of databse logfiles to generate users log reprot to trace
    the users transactionsssss...
    Thanks & regards
    Vivek

    Yuo have to start the logminer before running this command.It wont work before that,
    Read these.It will help,
    http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96521/logminer.htm
    http://www.oracle-base.com/articles/9i/LogMinerEnhancements9i.php
    http://www.oracle.com/technology/deploy/availability/htdocs/LogMinerOverview.htm
    Aman....

  • I bought the pack for students adobe creative cloud, already made the payment three days ago but when opening programs like photosop and illustrator puts the trial period has expired, how I can make them work?

    I bought the pack for students adobe creative cloud, already made the payment three days ago but when opening programs like photosop and illustrator puts the trial period has expired, how I can make them work?

    Hello Ibonedm,
    Sol 1. Please try sign out from Creative cloud Desktop App and quit it.
    1. Launch Creative Cloud application manager.
    2. Click the gear icon in the upper-right corner and select Preferences.
    3. In the Preferences menu, under General, click the Account tab.
    4. Click Sign Out from Creative Cloud.
    Then re-sign in and launch Photoshop CC 2014 and check.
    Sol 2. Check your Hosts file.
    Windows
    1. Choose Start > Run, type %systemroot% \system32\drivers\etc, and then press Enter.
    2. Locate Hosts file and move it to Desktop
    3. Right-click the hosts file and select Open. Select Notepad for the application to open the hosts file.
    4. Back up the hosts file: Choose File > Save As, save the file as hosts.backup, and then click OK.
    5. Search the hosts file for entries that reference activate.adobe.com (for example, 127.0.0.1 activate.adobe.com) and delete these entries.
    6. Save and close the file and move it back to Etc folder.
    Mac OS
    1. Log in as an administrator to edit the hosts file in Mac OS.
    2. In a Finder window, choose Go > Go To Folder.
    3. Type /etc.
    4. Select the hosts file and move it on Desktop  open it.
    5. Back up the hosts file: Choose File > Save As, save the file as hosts.backup, and then click OK.
    6. Search the hosts file for entries that reference activate.adobe.com (for example, 127.0.0.1 activate.adobe.com) and delete these entries.
    7. Move Hosts file back to etc folder
    8. Save and close the file.
    Then try launching Photoshop CC 2014 or Illustrator CC 2014
    If prompt for License this software, please click on it and sign in with the Adobe ID and Password which you have used to purchase the subscription and check if you can activate and use the products.
    Please respond , if any issue.
    All the best
    Loveneesh.

  • How I can make a folder contain pictures &video an...

    sorry if there are mistakes
     i have n95 v 31.0,017
     how I can make a folder in SD card contain pictures &video and I dont want them  appear in studio
    I dont want to use a files browser  and hide my files and i dont want  to use an application  to encrypt them because  I just  want to sort my pictures in a folder  and my video in afolder.
    thank you  
    Solved!
    Go to Solution.

    You can also try to remove them from the images folder and the  My videos folder, because this is where the Gallery will look for pictures and videos, and put them in another folder then reorganize them in sub folders within your new folder
    Show your appreciation. Hit that kudos button real hard

  • How I can make a call on my iPad 3G

    I buy a secondhand iPad first generation with 3G but how I can make a call ?

    Also forget about sending SMS text messages - the iPad internal modem is only used for cellular data.
    Can be a real pain when using prepaid SIMcards that require sending SMS text messages to top up
    3G prepaid internet on an iPad

  • How i can make a backup without separate hdd?

    How i can make a backup without seperate hdd?

    how i can partition the hd? please step by step...
    today it's my first apple-day ... i was 18 years windows user
    While I agree with everyone else, get a second disk and backup to that disk, I will point you in the directory of partitioning.
    Applications -> Utilities -> Disk Utility
    Disk Utility may or may not be able to carve a new partition out of your existing partition, depending on whether the end of the current partition is unused so the current partition can be reduced in size and a new partition added.
    It may be necessary to use an external disk, clone your internal disk using SuperDuper or Carbon Copy Cloner (both free to use when creating a full clone), then partition your internal disk, and finally restore the external clone to the internal disk again using SuperDuper or Carbon Copy Cloner.
    If you do not want to get a 2nd disk, then consider using an on-line service such as CrashPlan, Carbonite, Mozy, etc... for the files you absolutely cannot aford to loose.

  • How i can make valid java appliacation and how

    i am novice in java and i want to make good and valid application that i can run from server any body can tell me how i can make this or any link for any project online or build on net with deployment details
    A.R

    JAXP api can be used to read xml from java
    Cheers :)

  • How i can make  my own connection in java source of a jsp page

    How i can make my own connection in java source of a jsp page (How to get connection from JNDI datasource address) ?
    imagine that i have a rowset in a web page , now i want to do some operation using
    plain JDBC , so i will need a connection object.
    I tried to get one of my rowsets connection but it return null ?
    what is best way to retrive a connection from JNDI datasource that we define for our project?
    for example if i have
    myRowSet.setDataSourceName("java:comp/env/jdbc/be");
    in web page constructor
    now i want a pure connection from the same datasource ? JNDI
    Thank you

    It is not hard to get your own connection from datasource.
    in your case you need to do like the the following code.
    i provide sample to show you how to catch the exception and create an statement .
    Connection con =null;
    try{
    InitialContext ctx = new InitialContext();
    DataSource ds = (DataSource)ctx.lookup("java:comp/env/jdbc/be");
    con = ds.getConnection();
    java.sql.Statement st =con.createStatement();
    }catch(SQLException sqlex){
    sqlex.printStackTrace();
    sqlex.getNextException().printStackTrace();
    catch(NamingException nex){
    nex.printStackTrace();
    hth
    Masoud kalali

  • I want to know why some box of Iphone5s it's not come full accessories in box simple my iPhone 5s I have bought from Apple store last week it's first time for me use iPhone but so surprise me how the company make the phone have to use a pin to open

    I want to know why some box of Iphone5s it's not come full accessories in box simple my iPhone 5s I have bought from Apple store last week it's first time for me use iPhone but so surprise me how the company make the phone have to use a pin to open the sim but didn't give a pin inside the box and I ask staff at store their said they also don't know some box have some of are don't have a pin come together so then they told me I have to find solution or I have to buy a pin by my self I can buy it by myself but I really don't understand how come apple big company but how it's happen like this?thank you.

    Where did you purchase this. The US phones do not come with the SIM removal tool anymore. They haven't for some time now. I'm not even sure it comes with any of the devices anymore. You can just straighten out a paper clip and do the same thing.

  • How we can make CQ dialog box movable on page like sidestick?

    Hello All,
    How we can make CQ dialog box movable on page like sidestick.
    Should we have to use any property for that.
    Please tell me if any onw know this ticks.
    Thanks a ton in advance...
    Regards,
    Satish

    You could use dialogMode property configured under cq:editConfig node.
    dialogMode : floating
    http://dev.day.com/docs/en/cq/current/developing/components.html
    This should make your component dialog float and be movable.
    - Ashish

  • How i can make some components visible on comboBox selection change ?

    Hi
    Thank you for reading my post
    how i can make some of form component visible/ invisible when user changed a combobox selected item ?
    can we use partial rendering ?(i just read that ADF support partial rendering)
    thanks

    http://technology.amis.nl/blog/?p=1211

  • How i can make forms read form nls and reports read from anather

    hi evrey one
    how i can make forms read form nls_lang and reports read from anather nls_lang ,
    I think that this property is found in the file format .ini,
    I forgot his name,
    Is there one has found this information,
    pleez share.
    thanks.

    At a minimum, the creation of the TcpClient will need to change its parameter to the name of server you want to use:
    TcpClient tClient = new TcpClient("gmail-smtp-in.l.google.com", 25);

  • How i can  Make the project exectued program

    Hi all
    please how i can Make my project an exectued program
    i used the compiler of JBuilder (Borland)
    and i want to make exe program
    how i can do that?
    thank's
    karfer

    I'm not familiar with JBoreland IDE, but is there a way to export your project .jar file?
    If so than theres your solution. .Jar files just need to be exected (IE: Double click.) Also if this isn't the appropriate solution than you can export to a .jar file and use JSmooth to turn your .jar file into a .exe. For any other solutions I suggest you look on google.

  • How i can make multilanguage application .. take his vlues from database

    How i can make multilanguage application .. take his values from database
    and can change labels of massages , buttons ,text fields and name of columns in run time
    in jdevelpoer11g
    great thank

    Hi,
       I think that there is not a standard support for retrieving multilanguage texts from database in ADF. What we did is to implement our own ResourceBundle that retrieves the translated text from custom database tables. We also introduced a cache for optimizing the access to the translations.
    I hope this can help,
    Juanjo

Maybe you are looking for

  • How do I handle my Final SELECT based on a @ReportType Run Parameter

    So I have multiple CTEs in my SQL... WITH CTE_1 AS (SELECT...) CTE_2 AS (SELECT...) CTE_3 AS (SELECT...) My Final SELECT then will be based on my CTE drill-downs and the filtering will be based on the @ReportType that will be chosen within SSRS and R

  • Aggregating Item category in sales order to Invoice

    Hi There are two itemcategories in our sales orders one is revenue recognition type and other one normal item category, when we are billing the sales order, iam getting 2 invoice documents for the same sales document. Our client has requested is it p

  • HELP! Moving timeline from Standard to Widescreen Project

    I use Adobe Premiere Pro 5.5 and am in the middle of a large project. I was given the project in a file which the sequence 1 timeline contains all movie files however the project is in Standard not Widescreen (cutting out the sides of the videos and

  • CS 3 Epson R2400 printing problem

    After recently migrating from Tiger to Leopard I reinstalled the driver software for my Epson R2400, and have been having CS3 printing problems ever since. The project I'm doing print work from involves CMYK versions of greyscale photos and a spot co

  • Adding Corporate E-Mail Disclaimer to all outgoing email

    I need to configure our mail server to add an E-Mail disclaimer to all outgoing email. Can someone point me to the relevant documenation or assist me with this request. We are running Sun Messaging Server 6.1 HotFix 0.11. I should state that I am a n