WHERE DATE older two weeks

Hello,
I want to creat query in my java application like this...
All records which are actual and not longer as two weeks in the system.
Select ID from PROJECTS where CREATION_DATE ????
How can i make this.
Thx for some help...

Select ID from PROJECTS where CREATION_DATE > sysdate - 14

Similar Messages

  • Records in a table that are not older than two weeks

    Hey everyone,
    I have a mysql table which has a column DATE which contains the date the enty was inserted
    I need to write a script which keeps only those records that are no older than two weeks.
    Can this be done in sql?
    I can do it in Java but I guess this is not the most efficient way.
    I use jsp and servlets in my app.

    I just tried out the above code:
    DELETE FROM myTableHere  WHERE DATE_SUB(CURDATE(),INTERVAL 14 DAY) <= DATE;This is the error that I got:
    mysql> DELETE FROM myTableHere WHERE DATE_SUB(CURDATE(),INTERVAL 14 DAY) <= DATE;
    ERROR 1054 (42S22): Unknown column 'DATE' in 'where clause'
    mysql>
    my sql table has the currentDate column which specifies the current date and time when this entry was inserted into the DB. To get current date and time I use 'now()' function of sql.
    what is the problem?
    Thanks.

  • Data between one week or two dates

    select sysdate + rownum,
    ss.survey_name,
    (select count(*)
    from candidate_setup x
    where x.planned between '01-Nov-2008' and '01-Nov-2008'
    and x.survey_name = ss.survey_name) Planned,
    (select count(*)
    from candidate_setup x
    where x.forecast between '01-Nov-2008' and '01-Nov-2008'
    and x.survey_name = ss.survey_name) Forecast,
    (select count(*)
    from candidate_setup x
    where x.actual between '01-Nov-2008' and '01-Nov-2008'
    and x.survey_name = ss.survey_name) Actual
    from candidate_setup st, survey ss
    where ss.survey_id = st.survey_id
    output of the query
    SYSDATE+ROWNUM     SURVEY_NAME     PLANNED     FORECAST     ACTUAL
    05-Nov-08 7:19:55 PM     TSSR Submitted     0     0     0
    06-Nov-08 7:19:55 PM     TSSR Approved     0     0     0
    07-Nov-08 7:19:55 PM     Lease Submitted 0     0     0
    08-Nov-08 7:19:55 PM     Lease Approved     0     0     0
    but i want this
    Week Beginning     Date     CER Submitted          CER Approved          TSS Done          TSSR Submitted     
              Forecast     Actual     Forecast     Actual     Forecast     Actual     Forecast     Actual
    Monday     27-Oct-08     1     9     7     5     4     2     1     11     1     7     5     0     0
    Wednesda 29-Oct-08     2     9     4     1     0     0     1     5
    Thursday 30-Oct-08     4     0     3     0     2     0     1     0
    Friday     31-Oct-08     12     0     3     0     5     0     0     0
    Saturday 1-Nov-08     7     0     3     0     8     0     1     0
    Sunday     2-Nov-08     5     0     8     0     0     0     3     0
    Weekly Total          41     18     29     7     26     7     7     6
    Means shows the data between two given dates
    days + date between '01-Nov-2008' and '01-Nov-2008'
    and also compare these two dates in the query
    thanks

    p.s.
    If you want to show us code or data in a nice formatted manner that we can read, then surround it with {noformat}{noformat} tags.  ;)                                                                                                                                                                                                                                                                                                       

  • Query to delete two weeks old data.

    Hi Experts,
    I want to delete the records grater than two weeks old.
    From Saturday to Friday we are considering as Week.
    P_ID  CREATED_DT
    105    28/AUG/2013
    106    29/AUG/2013
    107    30/AUG/2013
    108    31/AUG/2013
    109    01/SEP/2013
    110    02/SEP/2013
    111    03/SEP/2013
    112    04/SEP/2013
    113    05/SEP/2013
    114    06/SEP/2013
    115    07/SEP/2013
    116    08/SEP/2013
    117    09/SEP/2013
    118    10/SEP/2013
    119    12/SEP/2013
    From 28/AUG/2013 to 30/AUG/2013 records has to be deleted becuase these records are two weeks old.
    From 31/AUG/2013 to 06/SEP/2013 records belongs to one week and from 07/SEP/2013 to 13/SEP/2013 belongs to another week.
    Today is 12/SEP/2013 so from 06/SEP/2013 to 12/SEP/2013 should be existed in the table.
    Once date changed to 13/SEP/2013 then from 31/AUG/2013 to 06/SEP/2013 records has to be deleted.
    I am posting table and insert scripts.
    CREATE TABLE process_data(p_id NUMBER,CREATED_DT DATE);
    INSERT INTO process_data VALUES(TO_DATE('28/AUG/2013','DD/MON/YYYY');
    INSERT INTO process_data VALUES(TO_DATE('29/AUG/2013','DD/MON/YYYY');
    INSERT INTO process_data VALUES(TO_DATE('30/AUG/2013','DD/MON/YYYY');
    INSERT INTO process_data VALUES(TO_DATE('31/AUG/2013','DD/MON/YYYY');
    INSERT INTO process_data VALUES(TO_DATE('01/SEP/2013','DD/MON/YYYY');
    INSERT INTO process_data VALUES(TO_DATE('02/SEP/2013','DD/MON/YYYY');
    INSERT INTO process_data VALUES(TO_DATE('03/SEP/2013','DD/MON/YYYY');
    INSERT INTO process_data VALUES(TO_DATE('04/SEP/2013','DD/MON/YYYY');
    INSERT INTO process_data VALUES(TO_DATE('05/SEP/2013','DD/MON/YYYY');
    INSERT INTO process_data VALUES(TO_DATE('06/SEP/2013','DD/MON/YYYY');
    INSERT INTO process_data VALUES(TO_DATE('07/SEP/2013','DD/MON/YYYY');
    INSERT INTO process_data VALUES(TO_DATE('08/SEP/2013','DD/MON/YYYY');
    INSERT INTO process_data VALUES(TO_DATE('09/SEP/2013','DD/MON/YYYY');
    INSERT INTO process_data VALUES(TO_DATE('10/SEP/2013','DD/MON/YYYY');
    INSERT INTO process_data VALUES(TO_DATE('11/SEP/2013','DD/MON/YYYY');
    INSERT INTO process_data VALUES(TO_DATE('12/SEP/2013','DD/MON/YYYY');
    Please help me how to implement this logic.
    Thanks.

    976208 wrote:
    Hi Experts,
    I want to delete the records grater than two weeks old.
    From Saturday to Friday we are considering as Week.
    P_ID  CREATED_DT
    105    28/AUG/2013
    106    29/AUG/2013
    107    30/AUG/2013
    108    31/AUG/2013
    109    01/SEP/2013
    110    02/SEP/2013
    111    03/SEP/2013
    112    04/SEP/2013
    113    05/SEP/2013
    114    06/SEP/2013
    115    07/SEP/2013
    116    08/SEP/2013
    117    09/SEP/2013
    118    10/SEP/2013
    119    12/SEP/2013
    From 28/AUG/2013 to 30/AUG/2013 records has to be deleted becuase these records are two weeks old.
    From 31/AUG/2013 to 06/SEP/2013 records belongs to one week and from 07/SEP/2013 to 13/SEP/2013 belongs to another week.
    Today is 12/SEP/2013 so from 06/SEP/2013 to 12/SEP/2013 should be existed in the table.
    Once date changed to 13/SEP/2013 then from 31/AUG/2013 to 06/SEP/2013 records has to be deleted.
    I am posting table and insert scripts.
    CREATE TABLE process_data(p_id NUMBER,CREATED_DT DATE);
    INSERT INTO process_data VALUES(TO_DATE('28/AUG/2013','DD/MON/YYYY');
    INSERT INTO process_data VALUES(TO_DATE('29/AUG/2013','DD/MON/YYYY');
    INSERT INTO process_data VALUES(TO_DATE('30/AUG/2013','DD/MON/YYYY');
    INSERT INTO process_data VALUES(TO_DATE('31/AUG/2013','DD/MON/YYYY');
    INSERT INTO process_data VALUES(TO_DATE('01/SEP/2013','DD/MON/YYYY');
    INSERT INTO process_data VALUES(TO_DATE('02/SEP/2013','DD/MON/YYYY');
    INSERT INTO process_data VALUES(TO_DATE('03/SEP/2013','DD/MON/YYYY');
    INSERT INTO process_data VALUES(TO_DATE('04/SEP/2013','DD/MON/YYYY');
    INSERT INTO process_data VALUES(TO_DATE('05/SEP/2013','DD/MON/YYYY');
    INSERT INTO process_data VALUES(TO_DATE('06/SEP/2013','DD/MON/YYYY');
    INSERT INTO process_data VALUES(TO_DATE('07/SEP/2013','DD/MON/YYYY');
    INSERT INTO process_data VALUES(TO_DATE('08/SEP/2013','DD/MON/YYYY');
    INSERT INTO process_data VALUES(TO_DATE('09/SEP/2013','DD/MON/YYYY');
    INSERT INTO process_data VALUES(TO_DATE('10/SEP/2013','DD/MON/YYYY');
    INSERT INTO process_data VALUES(TO_DATE('11/SEP/2013','DD/MON/YYYY');
    INSERT INTO process_data VALUES(TO_DATE('12/SEP/2013','DD/MON/YYYY');
    Please help me how to implement this logic.
    Thanks.
    From 31/AUG/2013 to 06/SEP/2013 records belongs to one week and from 07/SEP/2013 to 13/SEP/2013 belongs to another week.
    What does that have to do with the problem?
    You want to delete (daily?) anything over two weeks old.  That's 14 days.  That's sysdate - 14.
    delete from mytable where mydatecol < sysdate -14;
    It's so simple I'm afraid I must be missing some requirement that you haven't articulated.

  • Have family plan with 250 data which I almost use each month.  Going on vacation and will be on the road for two weeks.  Should I up my data for a month then change back.  Is it worth it or should I just run over and pay the extra 15 per gig?

    have family plan with 250 data which I almost use each month.  Going on vacation and will be on the road for two weeks.  Should I up my data for a month then change back.  Is it worth it or should I just run over and pay the extra 15 per gig?

    Hello mlazaretti. Vacation time is awesome. (Especially a road trip!) Since you will be going out for two weeks, you never know if having extra data may come in handy. I highly recommend switching to the next tier up so this way you have more data. This way it is only $10.00 more versus $15.00, and you dont have to worry about overages. Then change back at the start of the next billing cycle.
    If you need help making this change let us know! Have a safe trip!
    NicandroN_VZW
    Follow us on twitter @VZWSupport

  • How can I make a report of all records with the date in the last two weeks?

    Hi!
    I have records with a date field, I want to create a report that only includes records with a date which is within the last two weeks of the system date, is this possible? Surely this is a basic database function, I would have thought, but I can find no help about it and there's very little in Mac Help about doing anything other than simple stuff with reports.
    I'm not a genius with databases, so help with any required formula or what have you would be great!

    Hi Jonathan,
    Here's a formula you can use with the Match function. 'Date' is the name of the date field, which must be a "Date" type field.
    'Date'>NOW()-14
    Match will select (highlight) all records matching the query. You'll then need to use Organize > Hide Unselected to show only the matches.
    Unfortunately, I haven't found a way to make the NOW() function work in a Find request, and neither Match requests nor Hide Unselected can be included in a recorded search, either of which would reduce repeating the report to a one-button operation.
    Regards,
    Barry

  • I sent in my iPod nano to the replacement program about two weeks back. However, I checked the status of the repair and it still says it has not been received yet. Is there any way to follow up on where the nano could be? I sent it via FedEx.

    I sent in my iPod nano to the replacement program about two weeks back. However, I checked the status of the repair and it still says it has not been received yet. However, my boyfriend sent in his the same time I did and his repair status says repair being diagnosed. I still have the "receipt" of the package when they first sent it to me. I sent it via FedEx. Is there any way to follow up on where the nano could be or maybe find out if I can still get a replacement even though my nano might be lost in transit?

    I sent it via FedEx. 
    Call FedEx.  They will be able to track their own packages.  They will let you know if your iPod Nano was delivered and to who!

  • TS1702 I have a charge on my CC that does not track to any purchases nor do I have an email receipt.  Can anyone tell me where/how I can get this deleted (charge is from 04/08 so nearly two weeks old)?  Thanks!

    I have a charge on my CC that does not track to any purchases nor do I have an email receipt.  Can anyone tell me where/how I can get this deleted (charge is from 04/08 so nearly two weeks old)?  Thanks!

    Apple could not tell you who else might be using your credit card, so there's no point in trying to contact them. All they could discuss with you is your own iTunes Store account, and if there's nothing in your purchase history, the charges almost certainly aren't coming from there. Again, you should take this up with your bank/credit card company and report these charges as fraudulent. They probably will cancel your card and issue you a new one.
    Regards.

  • Is there any offer to use data only for my two weeks staying in London?

    I'm staying two weeks in London and i need a new sim card to use data. Any suggestion?

    Is your phone unlocked? See SIM only for phones

  • HT3702 i have two weeks that you guys are taking money from my bank account and I want to return to my accounts the amount is $ 74.16 sacanron me the date of the accounts is 11/26.12 $ 10.59 12/1/12 10.59-10.59-this is the total 42.39

    have two weeks that you guys are taking money from my bank account and I want to return to my accounts the amount is $ 74.16 sacanron me the date of the accounts is 11/26.12 $ 10.59 12/1/12 10.59-10.59-this is the total 42.39 total $74.16

    These are user-to-user forums, you are not talking to Apple here.
    You've checked the purchase history on your account (Store > View My Account menu option on your computer's iTunes), and have you made any in-app purchases or have any auto-renewing subscriptions ?  If not then you can contact iTunes support via this page : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • I am missing all emails two weeks old or older in my mac mail. This happens on a continuous basis. I cannot find them by search or any archived method. Can someone please help me stop this from happening?

    Missing emails of two weeks old and older in mac mail.

    Im really good at programming but really suck at algorithms
    >If your are 'really good' at programming, you will be able to solve this problem. Because, it has nothing to do with algorithm.
    >>can someone please please write in a algorithm form for me , i need it by friday i would greatly be thankful for u
    >Wrong person, in the wrong place.

  • I subscribed two weeks back and on the iTunes site Step 1 gathering data is still going on. Why is it taking so long?

    I subscribed two weeks back and on the iTunes site Step 1 gathering data is still going on. Why is it taking so long?

    I was also having this problem after having successfully used iTunes Match previously. The problem appears to be when there are two version of songs and one of them has the iCloud icon made using a dotted line. Here's what solved it for me:
    1. Identify your duplicate files. I have a large library, so I elected to use Dupin Light (available on the Mac App store). I suppose I could have used iTunes duplicate finder too, but I prefer the flexibility of Dupin.
    2. Once you have identified your duplicates, find them in iTunes. In my case Dupin identifed 50, from 19,000+ tracks, so for me it was not a large number to check manually.
    3. When you find the duplicates, if one of them has the aforementioned dotted line iCloud icon, this is the one you need to delete. If you accidently delete the other version, you can always download it again if you have purchased it from iTunes. In any case, it seems to be the tracks with this icon that it is causing iTunes Match to stall, so you will need to delete all of these.
    4. Once you have completed step 3, iTunes Match should not proceed and complete.

  • About two weeks ago, it would randomly shut off. It would restart fine, but shut off sooner. Sometimes, it wouldn't even restart. Now, it's at the point where when I power it on, it rarely restarts past the white apple start-up screen. mbp mid 2012 i7

    About two weeks ago, it would randomly shut off. It would restart fine, but shut off sooner. Sometimes, it wouldn't even restart. Now, it's at the point where when I power it on, it rarely restarts past the white apple start-up screen.

    Backup in case your disk is failing.
    Start up in Safe Mode;  http://support.apple.com/kb/PH14204?viewlocale=en_US
    If it boots reliably in Safe Mode then it is probably a software issue.
    Reset PRAM: http://support.apple.com/kb/PH4405
    Boot in Recovery Mode.  (Hold down the Command (⌘) and R keys as your computer restarts.)  Run Disk Utility.  Click on the upper left system disk icon.  Does S.M.A.R.T. report “Verified”?  If not the disk is failing and will need to be replaced.  Click on the icon underneath and indented to the right, usually called “Macintosh HD”.  Repair Disk.  It should finish normally with a green OK message.  If it does not try to repair it again. 
    If it will not finish with the green OK message then use Disk Utility to erase the drive and then reinstall OS X.  (Be sure you have a backup before erasing the disk.  Post back if you need instructions on how to do that.)
    If it repaired all errors and is still not booting normally, reinstall OS X.
    If it is still sick after all these steps then the disk probably needs to be replaced.  You can do that inexpensively and fairly easily yourself or take it to an Apple store for them to do it for you at a higher cost.  If it is still under warranty or AppleCare have Apple do it for you for free.  Post back if you need instructions on replacing the disk.  You may want to have Apple check the health of the system and disk before replacing it yourself.
    Message was edited by: Dibenkorn

  • Messages older than two weeks disappering from inbox? why?

    All messages received over two weeks prior are no longer available in my inbox. I scroll down and nothing over two weeks old is available! How do I get Mail to display all my messages?

    Thank you, no, I checked that as well... no scheduled deletion, checked on that first thing... this has only happened on my iMac when I upgraded to Yosemite, my MacBook Pro still running 10.9.5 has all my emails (thankfully) from over two years ago! I can't figure this out!

  • Can I transfer Time Machine data from two separate hard drives into one new one?

    I'm using a MacBook Pro as my primary computer.  My 500 gig Time Capsule filled up a year or so ago, so I stopped using it with Time Machine for awhile so I could keep the data from those old back-ups.  There were a number of things I deleted from my computer's very limited hard drive after they were backed up to the Time Capsule.  I got a 1T external USB drive last year to use as my "filing Cabinet" to store files I didn't necessarily need all the time or that were filling up my small laptop hard drive--including my iTunes library--all organized in a way that made it relatively easy for me to find what I needed, even if I didn't remember exactly when I'd filed it or what I'd called it.  I got another 1 terabyte external (portable) drive last July and dedicated it to TimeMachine backups and labeled it "TimeMachine".
    Over the last couple of weeks, my friend has been helping me upgrade to Yosemite and clean up my laptop hard drive.  Last week he cloned my laptop hard drive to a new 1T hard drive and I exchanged it for my old drive in my computer today. All good.
    Here's the issue.  We replaced my Time Capsule hard drive with a 1 terabyte drive with the idea of transferring the data from the old Time Capsule (500G) drive and the newer USB 1T "TimeMachine" compact drive to the new 1T Time Capsule drive and beginning using the latter for my Time Machine backups going forward.  Originally he thought we could copy everything from each of my external drives (the old 500gig drive from my Time Capsule, the USB "TimeMachine" drive I've been using since July, and the "file cabinet" files) to my computer in their own folders and then start regular TimeMachine backups to the new Time Capsule drive, thus preserving all my old data and making regular backups going forward.  The "file cabinet" data was no problem at all, but when I tried to copy my USB "TimeMachine" data to my computer, I was unable to.  My friend found instructions for transferring old TimeMachine data to a new TimeCapsule, but I don't know if I can transfer the data from two separate disks to the new TimeCapsule drive. I'm afraid that one set of data will supersede the other and either my newer backups or my old ones will be lost if I try to transfer both. 
    Are my fears justified or is there a way to insure that no such problem will occur?  Of course, my data will still be on those two older drives, but that won't do me a lot of good if I can't access it when I need to. Also, the 1T drive now belongs to my friend; he used a brand new drive he'd bought for himself for my new internal hard drive and plans to take my 1T "TimeCapsule" drive in exchange, once the data has been transferred, so he will, of course, erase that drive. 

    Should we be able to bring up the old (500G) Time Capsule Drive to rename it using a SATA to FireWire harness and then copy the whole thing to the new Time Capsule drive?
    You can copy a whole sparsebundle from one drive to another. That is not a problem. Whether you can access the sparsebundle is something you should test before you even start though.
    If it's on the Desktop and I don't tell Time Machine to exclude it from backups, will it just automatically back it up?
    All drives you plug into the Mac are excluded by default.. you must include them. So no problems there.. but I hope I am understanding the question.
    Will both volumes or directories (which is the right term?) show up when I open Time Machine?
    No, Time Machine will only open what it is told to open... or its backup default location.
    You can force Time Machine to open alternative/old/no longer used backups by (now I have a problem as things have changed somewhat in Yosemite and I consider it alpha release software at this point in time). The old method was to right click on the TM icon and select a different TM backup. easy. Yosemite seems to have made easy stuff harder.
    Here it is on my current computer.. clearly not Yosemite.. Right click on the TM icon in the dock.. select Browse Other Time Machine Disks.. And supply the info of where that is located. Easy. If you cannot figure it out one of the other posters here (with more patience than me for Yosemite) will help you.
    Or will we have to partition the new drive somehow--is that even possible?
    I am getting more lost as I go down the list.. but the TC disk cannot be partitioned.
    If you have included all those USB drives in the new backup on a Time a Time Capsule.. you have made life rather hard because now your files are stored another layer deeper than they were.
    So to open a file from a disk you need to open the sparsebundle.. then dig down to the drive in question and then dig down to the backup.. and all of this means Time Machine has to work perfectly which is Yosemite is a very big ask.
    I thought you wanted to just backup your old drives to central location.. which means copying the files to a separate folder on the Time Capsule.
    One correction I need to make to my post, which will make my strategy make a bit more sense: my new Time Capsule drive is 4T
    It makes it much harder.. and I have to pose a real question of long term .. if you have put a 4TB drive in a Gen1 TC.. did you also replace its power supply because I can assure you the drive might be ok but the TC itself will not last forever.. and what happens when it dies. The Gen1 power supply is already well beyond its normal life span and the vast majority are dead. When the backup device is unreliable and the backups on it are made that much harder to get access to.. is this a great plan??
    If you are going to consolidate all your old files on one disk.. a task I find understandable. I have done much the same albeit the usefulness of files made on emac running OS9 may be questioned. A disk lying in the bottom of a draw is a more appropriate place for them.
    You want those files as easily accessible as possible (at the point of recovery) and not buried inside a sparsebundle.. particularly not a sparsebundle from the old TC disk buried inside a new sparsebundle.. keep files as accessible as possible as you can run searches.. and that is best done on a USB 3 (or faster ie thunderbolt) drive plugged into a new(ish) computer.. not network. And since the files are not being accessed on a daily/weekly or even monthly or yearly basis.. keeping them in actively running TC network storage.. I would say is a waste of space. That is only my opinion of course.. you might consider it highly important that files you will never look at are available any time of day or night when the urge comes to track down that elusive pimpernel email you sent 10 years ago... but I find it hard to justify. What the case.. the problem with TM and things like Mail is you cannot search it.. you must restore the whole library/files/program even before you can access it.. that makes file recovery out of a sparsebundle double step process.
    So.. summary.
    If you want to store files on the 4TB drive in the TC.. that is not a great strategy but it can work.. simply create a folder named.. OldFilesEMac for instance.. and do a simple copy and paste of all the file to that location. Do not use TM.. Since you have already used TM.. and from what I am reading you have already done the backup with the external drives included.. then you are going to end up needing to erase the TC and start over.. which you may not be prepared to do.. which is fair enough. (I am coming across as overbearing school master.. apologies).
    TM is to backup your main OS and current files.. not files from 10-20years ago.
    Please do read the issues involved in Pondini..
    See his FAQ. I recommend you read through Q14-17 so you understand what is involved in recovery.
    http://pondini.org/TM/FAQ.html
    I also recommend you read the first couple of articles here. http://pondini.org/TM/Home.html
    Particularly so you understand the complexity of Time Machine.
    And the articles here. http://pondini.org/TM/Time_Capsule.html
    Particularly Q3 on mixing data and backups on a TC.
    I wish I could spend an hour or two face to face and work it out.. the whole strategy to do this.. !!

Maybe you are looking for

  • Creative Cloud is a mistake, and neither an option.

    Yes. I am not a common Adobe user, however, it is easy to see the effects of such monthly-based subscription, in general. I wanted to post this in the feedback site, but I couldn't. -.- It is quite clear that, who do use Adobe 24/7 or very and very o

  • Custom File Extension for Microsoft Access Text Driver (*.txt, *.csv)

    I'm trying to use a custom file extension for the Microsoft Access Text Driver (*.txt, *.csv) driver. I have updated the FileExtns registry to have my new extension. When I issue the following it does not work. select [NoName]  from openrowset('MSDAS

  • What exactly is "combo audio in/out" interface?

    My new W530 has  "combo audio in/out".  I have not had this kind of audio/sound card interface before? Before even trying all my stuff in it, do I understand this right? Instead of the regular green, burgundy, etc. speaker, microphone connectors, thi

  • Physical Standby Database (Protection Mode)?!!

    Hi, I have configured a physical standby database to use Real-time Apply, but i noticed that the protection mode of the database has been changed from "Maximum Performance" to ''Maximum Availability".. log_archive_dest_3='service=phystby OPTIONAL LGW

  • Make queriable a non based item

    hello all. what's the best way to make queriable (f7/f8 functionality) a non based item? i've tried dynamic sql but it's not admited in forms, and I don't think exec_sql it's the best way. any ideas? thanks in advance.