more coffee or more eyes

Oracle 11.2.0.4.0 SE 64 - bit

OL 5

I "ve been watching this until my eyes is about to crystallize."  I obviously do not see clearly, it seems that I need an extra set of eyes...

SQL > @doit

SQL > set echo on the comments on check on trimsp on line 256

SQL > start

(2 dbms_audit_mgmt.create_purge_job)

3 audit_trail_type = > dbms_audit_mgmt.audit_trail_all,

audit_trail_purge_interval 4 = > 24,

5 audit_trail_purge_name = > "audit_trail_purge_job"

use_last_arch_timestatmp 6 = > TRUE

7    );

8 end;

9.

() dbms_audit_mgmt.create_purge_job

*

ERROR on line 2:

ORA-06550: line 2, column 3:

PLS-00306: wrong number or types of arguments in the call to 'CREATE_PURGE_JOB '.

ORA-06550: line 2, column 3:

PL/SQL: Statement ignored

Error is here:

use_last_arch_timestatmp

check the spelling of 'timestamp '.

Tags: Database

Similar Questions

  • What colors are more professional?

    Which is better in your opinion and why?

    High or low

    colorsample.jpg

    Hello

    First Image

    As the bottom has the information printed in red color with high brightness.

    Color is so catch more eye rather than information.

    So in my opinion the 1st image is better...

    ~ Jitendra

  • looks in OS3

    After upgrading to OS3 on my 1st generation Apple Watch, I have more 'eyes '.  I open the app shows on my iPhone 6 +, (OS 10.0.2) and no 'looks '.  I slide up on my watch and I get a gray screen with 6 boxes.  I swipe to the left and right, and nothing.  Where's looks?

    Hello

    Looks has been replaced, under watch OS 3, by the Dock, to which up to ten of your favorite applications can be added:

    Once they have been added, you can access them from the Dock by pressing the side button once then slip between them and by tapping on them.

  • RAM under Windows 7 x 64 bit

    So I was playing game (gta v) recently on my computer and for some reason that the game was horrible for my decent to high-end card (gtx 970 and amd 8350 stock)... after turning down all the settings, the problem persists, I went into the Task Manager, while the game has been launched and I noticed it says there was only 4052 MB of available RAM , I have revenge corsair 8 gb ddr3 RAM (2x4gb) both sticks are completely wired and connected correctly, I checked carefully. I restarted my computer to start in the UEFI BIOS to check that the two sticks are recognized and the two sticks are recognized, so I checked if it was something wrong with my OS. I am running Windows 7 Home Premium x 64, which limits the amount of RAM to 16 GB so I checked to make sure that my os was x 64 running who it was but it still uses only 4 GB of RAM as if it were x 86... why, then, how can I fix it?

    -Windows memory management is a bit complex. I have not studied all the s and off and I never really checked how much system RAM is cached, or otherwise used when a game has been loaded, but basically...

    Caching RAM is not lost, not recognized or "hide away".  Caching RAM is in use, but not necessarily active.

    Programs of the data cache in RAM for fast access.

    Super fetch is a Windows mechanism that caches data for frequently used programs, but the cached data will be deleted / redness if more RAM is required by and active program, such as GTA5.

    It may even be that GTA5 is pre loading data (which would seem to indicate that GTA5 was ported correctly on PC).

    -If you use a HARD disk and that you have active Prefetch (Prefetch is not used if you have an SSD) it will also be

    cache data in memory when Windows starts.

    Startup programs that you find in The System Configuration (msconfig) even cache data. Limiting the number of startup programs can go a long way toward improving the performance and reduce the probability of software conflicts.

    "all settings are lowest for gta v."

    All backgrounds using low can be counterproductive. If the gpu is not given enough work the load moves toward the

    CPU, resulting in lower graphics performance.

    Check that the gpu gets full use (99%) and that the VRAM is no more used (above 3.5 GB).

    This will give the best performance available for this game.

    GPU - Z card GPU Information Utility

    -If you do not use the card Nvidia 'Experience' to optimize settings games try this and then set the parameters

    until manually until the game begins to lag. Then dial back a bit and you should have the maximum eye candy the

    card can provide without undue delay, etc.

    -What are the best/maximum graphics settings is subjective. I don't mind a bit of a glitch, or occasional short shift in favour of more eye-candy, but many people want as much sweetness that can provide a game.

    For the smoother game the optimal settings suggested by experience"is the best solution.

    -I'm still old school and prefer to choose my own settings in the game and occasionally via Control Panel Nvidia

    (for the most part, older games have no AA or AF settings).

    I even do not install the 'experience' that I do not install anything that I do not use (do not install 3D drivers or a HD Audio either if you don't use them).

    Luxury soon...

    .

  • No nested extensible XML nodes

    Nice day

    I am new to Oracle, working on a project for a client, from a .NET/MSSQL environment. Initially the project was intended for MSSQL, but it was decided, a week before the deadline, we should migrate database and all the functions and procedures in Oracle. Most of this had progressed relatively smoothly, until today.

    The idea is to query the database and return the XML as follows (Simplified):

    < document >

    < id > 1 < /ID >

    cheeses from < name > < / name >

    < owner >

    < name > bert < / name >

    < identification >

    Passport < type > < / type >

    < number > 12345 < / number >

    < / identification >

    < identification >

    travel document < type > < / type >

    < number > 98765 < / number >

    < / identification >

    < / owner >

    < / document >

    The structure of the XML has been implemented by an international organization and is 100% out of my control.

    As you can see it the 'identification' node repeats without being nested, and that's what I need. So far I've been able to get the repeat nested under some other node ( Redmark), as follows:

    < document >

    < id > 1 < /ID >

    cheeses from < name > < / name >

    < owner >

    < name > bert < / name >

    < identification >

    < identification >

    Passport < type > < / type >

    < number > 12345 < / number >

    < / identification >

    < identification >

    travel document < type > < / type >

    < number > 98765 < / number >

    < / identification >

    < / identifications >

    < / owner >

    < / document >

    Currently I use a function to generate the nodes 'identification', and I call this function to a query, as follows:

    -Function

    CREATE FUNCTION IDENTIFICATIONDETAILS

    .....

    SELECT

    XMLAGG

    (

    XMLELEMENT

    (

    "identification."

    XMLFOREST

    (

    type 'TYPE '.

    number such AS 'number '.

    )

    )

    )

    Of...

    ;/

    -Query

    SELECT

    XMLFOREST

    (

    p.NAME AS 'name',

    IDENTIFICATIONDETAILS (p.ID) AS 'identification'

    )

    Of

    NO p

    This is how I understand it. XMLFOREST function generates a list of nodes such as specified by its parameters. XMLELEMENT nests, then the nodes generated by the XMLFOREST function under a single node as shown by it first parameter; If this is not done, all the results will be simply sent together not the outer query specifies as follows (not the repetition of type and number):

    < document >

    < id > 1 < /ID >

    cheeses from < name > < / name >

    < owner >

    < name > bert < / name >

    < identification >

    Passport < type > < / type >

    < number > 12345 < / number >

    travel document < type > < / type >

    < number > 98765 < / number >

    < / identification >

    < / owner >

    < / document >

    Function XMLAGG the then consolidates the collection of items returned by the XMLELEMENT function into a single object, otherwise I get the error "several rows returned" (paraphrase). Then, the result of the function is nested under a node of 'identification' (marked Green) that I am obliged to alias parameter XMLFOREST.


    So I need to get rid of the external nesting; This alias 'identifier', it's causing me a headache.

    It's probably something simple, but I've been struggling with this every day now and I think I need the eyes of certain fees, not biased on check it out and point out my flaws. also, some with experiences more eyes go top will also be a bonus.

    Thanks in advance for your time, assistance, and to respond to my problem.

    Best!

    What about

    Select

    XmlElement ("owner",

    XMLAGG)

    XmlElement ('identification',

    XmlElement ("type", e.ename)

    XmlElement ("number", e.empno)

    )

    )

    ) d

    from emp e, Dept. d

    where e.deptno = d.deptn

    Smith

    7369

    Allen

    7499

    ...

  • With the help of SID instead of SERVICE_NAME in ORACLE 12 c

    Can I use SID instead of the SERVICE_NAME in TNSNAMES. ORA with Oracle 12 c (with or without pluggable database)?  It looks not to I can use the SID after I created an APB - I tried and could not do this work.  Can I still use SID instead of the SERVICE_NAME after you have created the database with no plug-in database container?

    Thank you, Teresa.

    Can ask this question on the specific database forum. These are mainly public cloud of oracle. A lot more eyes on the specific database.

  • ADOBE STAFF: What is the testing process as before releasing updated? I don't think it's good enough...

    I opened a project complex first Pro CC 20141 and immediately had problems with 2015. ( Re: Major bug in CC 2015 DynamicLink causing effects of rendering in the workspace to fail; the only solution is to kill the process of AE ) Like, in the opening minute.

    How many people do you test something like that? For how long?

    I felt like a * (do not use the offensive word - mod), but I predicted this was going to happen months ago, when you guys released your feature promo videos:

    Come to Adobe Premiere Pro - new Morph Cut - YouTube > and search for TeeKay, you'll see my comment.

    Whenever you press a news, you will introduce bugs. I expect to do this... but this main bugs?

    Playback is terrible compared to the CC 2014 to a lot of people.

    DynamicLink between Premiere Pro and After Effects fails regularly.

    How does it go unnoticed?

    PS: if I commit to stop being a jerk, I'll be a part of the beta test team? It seems that you need a lot more eyes on this stuff before he became... How to become a beta tester?

    If you only wanting to be a beta tester fill out this form.

    Adobe - Prerelease programs

  • Performance of flat button

    Simple nav in any of my folios seem to take forever and he starts to shoot me ;-) I have to do something wrong. Go to destination or go to URL buttons take a considerable amount of time - about 2 seconds to do its thing. I can't imagine it's my file size, and I was the construction of portfolios for res standard iPad and retina with no difference. It's just slow...

    Any ideas on how I can do things more eye-catching? Thank you very much.

    Out of curiosity, are you creating folios in PDF or PNG?

    Neil

  • no disc in the drive? And file is not supported or the required codec is not installed?

    I have been w work on a project for over 6 month. yesterday, it would not open. First he asked me to point to the location of the video files for 18 files I fortunately work for the last 6 months, and then once I went that it gives me the message:

    ' There is none in the hard disk drive. Insert a disk in the drive\Device\Harddisk2\DR2'

    .. .and constantly stopped upward when I tried to ignore or Cancel to exit (forcing me to go to the Task Manager to close items).

    I should point out that I have worked off the coast of files stored on an external hard drive of 1 terrabyte. However, I am still able to view and open all the ext HD files in Windows Media Player, etc. which eliminates me the idea of a problem with the drive.

    I can open a new project and add the same file/s (first few files for a test run). Following its telling me

    "This type of file is not supported or the required codec is not installed."

    .. .but it worked just the other day, so it IS supported and must have the required codec.

    Moved some files on the hard disk of the PC. Seems to work ok... take back me to the fact that the external hard drive can be a source of the problem, but I can open all the files there in all other programs... so you have PE? Or is it?

    I can't find any similar link on the forum... but if anyone can help or have any suggestions I'd appreciate your comments! See you soon

    Gila Valley,

    Welcome to the forum.

    Can provide you details of your system, your project and your source files?

    It may be best to start a new thread to do this, so that zero confused between your questions and the OP also, since this thread has been marked as answer, many people eventually spend on watching and miss your problems. The more eyes on a problem, the better.

    I would like to look at this ARTICLE for suggestions on the types of information that would be so useful.

    Then, if you collect this info, take a look at this ARTICLE to settle pre, your operating system and also the computer.

    Good luck and thanks for this info,

    Hunt

  • Foamee beer or coffee for more help

    Hello

    I hope someone can point me in the right direction on a SQL query writing. Sorry if this is getting a bit long but I want to provide enough information to get help I need.

    Here's the skinny:

    I wrote a CRM system that allow users to keep their list of clients (names and mailing address, etc.). Every 2 months (Consultants) users can connect and order/send their clients (Customers) personalized mailing brochures where brochures to get a personal message printed on them to the sender.

    I have a MySQL database with 4 tables.

    Table 1: Consultants - registered users
    Table 2: Customers - registered users
    Table 3: Messages
    Table 4: ConsultantOrders

    The problem is that a Consultant can order more than one during each cycle.

    So I want to be able to do is query the DB, find all the consultants who have placed an order - but only pull THE MOST RECENT order as the newOrder - and then extract customers all advisers to compile a master merge.

    What I'm doing right now is first run a query to find consultants have several orders of the current cycle. Then I go and manually delete duplicate orders. Once it's done I then run this query:

    SELECT DISTINCT
    'ConsultantOrders '. "ConsultantID,"
    'ConsultantOrders '. "OrderID"
    "Consultants". "ConsultantID,"
    "Consultants". "First name",
    "Consultants". "LastName."
    "Consultants". "Address1"
    "Consultants". "Address2"
    "Consultants". 'City ',.
    "Consultants". "State":
    "Consultants". "Zip,"
    "Consultants". "Phone."
    "Consultants". "SecondaryPhone,"
    "' Consultants." EmailAddress',.
    "Consultants". "Web site."
    "Consultants". 'MessageID '.
    "Consultants". "Authorized."
    'Clients '. "First name",
    'Clients '. 'Name',
    'Clients '. "Address1"
    'Clients '. "Address2"
    'Clients '. 'City ',.
    'Clients '. "State":
    'Clients '. "Zip,"
    'Clients '. "Language."
    'Clients '. "Mail."
    'Clients '. "ConsultantID,"
    "Messages". 'MessageID '.
    Message "Messages." "
    Of
    "ConsultantOrders,"
    "Consultants".
    Inner Join 'Customers' ON "=",
    "Messages".
    WHERE
    "Consultants." ConsultantID' = ConsultantID of the 'ConsultantOrders '. ' AND
    ConsultantID 'Customers.' ' = ConsultantID of the 'ConsultantOrders '. ' AND
    Mail 'Customers.' '= ' 1' AND
    MessageID "Consultants." "="Messages." MessageID' AND
    Status 'Customers.' '= ' 1' AND
    'Advisers.' allowed '= ' 1' AND
    'ConsultantOrders '. "OrderID" > 2512

    If someone can tell me how I would write a direct query to do not have to manually delete duplicate orders?

    I think I need to use a function (Max), but for the life of me, I can't make it work right.

    Any help would be greatly appreciated. Beer or coffee through foamee.com as a reward?

    See you soon,.

    Eric

    AWESOME!

    It worked like a charm. I just had to add a 'ON' in the first line INNER JOIN and it worked perfectly. Thanks to a bouquet.

    I will send you a private message as well for a "Thank you" gift

    See you soon,.

    Eric

  • Any way to print user manual iPad that was recently downloaded during the conversation? Have MS with recurring eye problems. Becomes more difficult to read and find things on the screen.

    WWould would like to be able to print iPad Users.Manual. Originally, MS is irregular and fewer problems. Running harder to read on the screen. Impression would be easierto read.

    Hello! The manual is available here:

    http://help.Apple.com/iPad/9/

    You can also read in iBooks on your iPad.

    https://iTunes.Apple.com/us/book/id1035374126

    Unfortunately, I do not know if there is a printable version for iOS 9.

    This one is for iOS 8.4.

    https://manuals.info.Apple.com/manuals/1000/MA1595/en_US/ipad_user_guide.PDF

  • Questions about video stabilization - iPhone 7 more

    Hi all

    Like most of you, I am an Apple enthusiast. I work as a videographer frelance. I use Apple products every day. I'm about to buy the new iPhone, but there are some issues that concern me. I've seen a few videos with the new iPhone 7 more, and it seems that video stabilization, its all just too bad. When the person walks, the camera is still struggling to stabilize images, and it gives a very poor video quality/eye. It seems that the video is allways glitching.

    I can't be the only one to notice this problem. Help, please! Do you know if its possible to disable? Which will probably solve this glitch.

    Best regards

    I have the same question. Today, I shot a lot of video footage and when I walk around with the camera I get a strobe effect. The video is useless. Does anyone else have this problem? It is with my iPhone 7.

  • How can I get Firefox to use more than 12.5% of the capacity of my modem wireless?

    Only if you use Firefox, pages take forever to load. Use of my wireless router in looking, I found that it runs in general (with just Firefox, no other program running on the internet) to 0% or 0.0%, with few spikes up to 5%. Even when you try to view a video.

    When I download something, it could rise to more than 12.5%, for a bit, but I never saw that he hit even 50%.

    When I'm doing something which seems that it takes more ability to my router, Firefox instead takes a bit of my CPU, I'm guessing that there is a lot to ask where are the packets of data or something.

    I have no proxy, or restart Firefox update worked, nor has completely rebooted my computer. I adjusted my network connections down, then back to the top, and all that did was make it so that I can't watch youtube videos, which she usually takes me a few tries to load in a resolution that will not hurt my eyes, and it is with an add-on that makes it so that they are forced to play in HD!

    OK, it's alright with the ISP part - I thought, as had shown activity wireless adapter testing with IE more like what was expected.

    I've also updated the two FF (not something I want to do, as it rarely is compatible with my Add-ons update. My set up is fine, it works, why should I change to something that will not be?), and an update of the computer (which, Yes, I should do it more often. A final which will automatically but has been massive, however and literally broke my copy of FireFox. It was boring!).

    I still feel like it runs too low, but at least the videos loading and read without problem now-well, for the most part.

    They load, kick up an error for a few moments and then screen reload and then play correctly. I guess I can live with that.

  • I can no more color calibrate my monitor Apple Cinema Display 10 years because it is more compatible with my iMac Thunderbolt.  How can I color calibrate the Apple Cinema Display Monitor?

    I currently own an iMac OS X El Capitan Version 10.11.4 27 inches (2 1/2 years) with Thunderbolt technology.  I also have a screen of cinema with older technology.  Previously, when the technology was the same for the Apple display and my previous iMac, I was able to color calibrate the Apple cinema and my iMac but it is no longer the case. I know that there is a way to color calibrate the monitor Cinema with old technology when the iMac has the Thunderbolt technology, but cannot remember what are the steps.  The colors on the Apple Cinema are out of whack and too bright.  Can anyone help?  I'd appreciate any help you can provide.  Thank you.

    Henriette

    PS: The color calibration device I own is a gretagmacbeth eye - one display2.

    Hello henriettefromnovato,

    Thank you for using communities of Apple Support.

    I see you want to calibrate the color of your movie screen.  You can calibrate your screen by following the steps in the link below.

    OS X Yosemite: calibrate your screen

    If you are unable to do so, then please be more specific about what happens when you try and calibrate.

    Have a good.

  • no more button for immediate search history?

    I'm not too keen on the new Firefox. I wouldn't get a PhD for operating an internet search site. and while I'm ranting; the choice of color of grey and black for the rest of the tabs is really hard on the eyes.

    However, there was once a useful box next to the go forward (BTW it should say 'go forward one page' step forward) and go back to a button on the page where you can see your last 10 pages or more. When firefox is stuck you could always click on a page to go back. This shortcut key is now missing. DANG! I don't want to have to click and search through my history for 3 pages before and upset my set-up of the toolbar. Waste of time.
    Does anyone know how to fix this? Thank you

    In Firefox 4, you can right click on the previous or Next button to see a list of recent pages you have visited.

Maybe you are looking for