Need to find our current time from sqlplus

I need to find out current time from sqlplus.

select sysdate from dual;
Hmmm ... time to hit the manuals?!?!

Similar Messages

  • BW3.5 : Busness content == Need to find the source cube from an web item

    Hi,
      While executing( preview) an iview  of the predelivered CRM business package( com.sap.pct.crm.slsAnalyt.spa.Customer iview for Sales manager), in Enterprise Portal, I get an error " Error loading template 0TPL_0CRM_SM_CUSTOMER".
      I can see this perticular web template in BW and when trying to activate this by tranferring into the content windows it brought thousands of other objects( even when I selected 'Only necessary object'). I am not sure whether I should go ahead with the activation.
      I would like to know what is the relationship between a cube and a web template and how to findout the related cube from the template?
      Also is it possible to activate only certain webtemplates only for queries of a perticular cube?
      Thanks
    Arunava

    Thanks Dinesh,
    \ BW3.5 : Busness content ==>Need to find the source cube from an web item
    Posted: Nov 2, 2005 10:00 PM        Reply      E-mail this post 
    Thanks Dinesh
    I would still like to know the relationship between a cube and a web template and how to find out the related cube( or query etc) from the template?
    Please let me know,
    Thanks
    Arunava

  • Where can I find the current time and date of Time Capsule?

    I have a home network consisint of 2 x Time Capsules and 1 x Airport Express.  All is working fine.  I would like to set up access control for one machine connecting to the network and I can see I can do this under Access Control on the Airport Utility.  My question is where can I find the current time and date setting for these devices? 
    I can set them to use the time.apple.com server to set the time automatically, but I can't find where to see the current time and date of the device.  The only place I can see reference to the time and date is on the logs and statistics under the Advanced tab of the AirPort Untility.

    I don't think you can change the time and date on the TC itself, it just connects to a time server (and you set your own time zone).

  • Find total processing time from routing

    Hi,
    I'm writing specs for creating a production scheduling report for sales orders. I'm stuck at finding the relevant tables and fields for this particular calc. I want to find the processing time from routing.
    Total Processing Time (if Procurement type = u201CEu201D, then all operations from tasklist/Routing Operations for the material number) = Setup Time + (Machine time * Operation Quantity) + (Labor time * Operation Quantity)
    Any suggestions??
    Thanks

    Hi
    Check with any one of the following table:
    EAPL     Allocation of task lists to pieces of equipment
    EINA     Purchasing Info Record: General Data
    EINE     Purchasing Info Record: Purchasing Organization Data
    ESKL     Account Assignment Specification: Service Line
    ESLH     Service Package Header Data
    ESLL     Lines of Service Package
    INOB     Link between Internal Number and Object
    KALC     Material Quantity Calculation - Formulas
    KALT     Material Quantity Calculation: Header
    KOCLU     Cluster for conditions in purchasing and sales
    KSSK     Allocation Table: Object to Class
    LFA1     Vendor Master (General Section)
    MAPL     Assignment of Task Lists to Materials
    MLST     Milestone
    MLTX     Milestone Description
    PLAB     Relationships
    PLAS     Task list - selection of operations/activities
    PLFH     Task list - production resources/tools
    PLFL     Task list - sequences
    PLFT     Process Instructions
    PLFV     PI Characteristics/Sub-Operation Parameter Values
    PLKO     Task list - header
    PLKZ     Task list: main header
    PLMK     Inspection plan characteristics
    PLMW     MAPL-Dependent Charac. Specifications (Inspection Plan)
    PLMZ     Allocation of bill of material items to operations
    PLPH     CAPP: Sub-operations
    PLPO     Task list - operation/activity
    Thanks
    Saravana
    Reward if useful

  • FSG - Need to find beginning balance value from current year

    Hi,
    Could any one help me please,
    i designed FSG report and the issue is we need to find the beginning balance form the current year
    and i do not know which amount type i should use in column set.
    maybe there is any way or workaround for this issue?
    example :
    when i run the report with parameter JUN-12, the XXX (beginning balance current year) = 5000
    and when i run the report with parameter SEP-12, the XXX (beginning balance current year) is still 5000
    thanks
    Lim Johny

    This is some of the worst SQL I have seen. The data element names change from table to table, and they violate ISO-11179 rules. We seldom use OUTER JOINs in a properly designed schema, we seldom need to worry about NULLs; we use COALESCE(), not ISNULL();
    we use CURRENT_TIMESTAMP, not getdate(), etc. 
    Did you know that nesting scalar subqueries will screw any hope of optimization? The changes in the formatting of program text implies that many different, inexperienced younger programmers who wrote in many different non-SQL languages. You even posted in colors,
    like grade school! 
    My guess is that everyone wrote a query without any planning, and then threw them together in one pile. 
    It seems that this nightmare has three tables and we have no DDL or other specs:
     Stock 
     Stock_Lead_Times 
     Traces
    Want to follow Netiquette and post DDL with some specs? 
    --CELKO-- Books in Celko Series for Morgan-Kaufmann Publishing: Analytics and OLAP in SQL / Data and Databases: Concepts in Practice Data / Measurements and Standards in SQL SQL for Smarties / SQL Programming Style / SQL Puzzles and Answers / Thinking
    in Sets / Trees and Hierarchies in SQL

  • Unable to insert current time from PHP

    Hi: how do I insert the current time into a DATE field in the database. This is what I have and does not work.<br><br>
    $currTime = 'to_date('.date("m/d/Y H:i:s", time()).', "MM/dd/yyyy HH:mm:ss")';<br>
    $sql = 'insert into IMPACT_EMAIL_ACTION (PRIORITYID,OSFILTER,EMAILADDRESS,CREATEBY,ACTIONEXPIRE,STOPPROCESSING,REQUESTDATE) VALUES (:priority,:osrule,:eaddress,:createby,:expire,:stopprocessing,:reqtime)';<br>
    $insertcusror = oci_parse($conn, $sql);<br>
    .<br>
    .<br>
    oci_bind_by_name($insertcusror, ':reqtime', $currTime);<br>
    .<br>
    .<br>
    $ok = oci_execute($insertcusror);<br>
    <br>
    I get the following error with the above code.<br>
    oci_execute() [function.oci-execute]: ORA-01841: (full) year must be between -4713 and +9999, and not be 0 in /export/home/rawlog/lsws/DEFAULT/html/action.php on line 488<br>
    In my log file when I print $currTime, this is what I see<br>
    [STDERR] to_char(02/14/2007 10:05:15, "MM/dd/yyyy HH:mm:ss")<br>
    <br><br>
    Thanks<br>
    Ravi<br>

    had to use
    $currTime = date("m/d/Y H:i:s", time());
    $sql = 'insert into ' . $tableName . ' (PRIORITYID,OSFILTER,EMAILADDRESS,CREATEBY,ACTIONEXPIRE,STOPPROCESSING,REQUESTDATE) ';
    $sql .= "VALUES (:priority,:osrule,:eaddress,:createby,:expire,:stopprocessing,TO_DATE('$currTime', 'mm/dd/yyyy HH24:MI:SS'))";
    couldn't bind it...

  • Need to find mail on TIme Machine backup

    My wife uses our POP mail account from AT&T. She had a couple of E-mails flagged in OSX mail and they disappeard earlier this week. I am backing up my HD with time machine. How can I go back in time, to find the E-mails that have disappeard?
    Thanks in advance.

    Hello:
    Open Mail.  Open Time Machine.  Highlight the relevant mailbox.  There should be arrows at the lower right corner that should allow you to move back in time.
    Barry
    P.S.  I am using OS X 10.8.2 so there might be a difference from your profile system.

  • HT4859 Need help finding & restoring lost info from a cloud

    I have been backing up my iphone to a cloud.  Somehow half my "Notes" are missing today.  How do I restore them from the cloud backup?

    Restoring to an iCloud backup has to be done in the initial device setup process, which requires first erasing your phone.  If you have any newer data on your phone now that is not in the backup that you want to save you'll need to do that first.  When you're done, go to Settings>General>Reset and tap Erase All Content and Settings.  Then go through the setup screens on your phone and when given the option, choose Restore from iCloud Backup.  Be sure it is connected to wifi and your charger as this will take some time to finish.
    Apple's documention doesn't make it clear whether or not notes are included in the iCloud backup.  Hopefully this will restore your missing notes.

  • Need the find the all DDLs from the schema of 1 year old

    Hi,
    Can you please provide the information for the following databases, schemas within the given timeframe:
    - LMS_MX / BATCH_MX / JMS_MX
    – DWH_MX
    Start: 01.01.2013
    End: 31.12.2013
    We need all DDL from the schemas above.
    Thanks,
    Can anybody help me out ,?  how to find such details.?

    1978276 wrote:
    i dont no , how to use audit logs..? can anybody guide me to find the details of 1 year..
    Do you have auditing enabled? Default is not enabled for what you want to query. So unless you have specific auditing enabled, and the audit logs for that year period, you are out of luck.
    Thus, the details are not available as you did not instruct Oracle to record the details.
    Not an Oracle problem. Your problem.
    And as rp0428 said - this begs the question as just WHAT is your problem?

  • How to find out Database version from SQLplus ?

    Which command do I have to type in sqlplus in order to get the underlying database version?

    SQL> conn /as sysdba
    Connected.
    SQL> select * from v$version;
    BANNER
    Oracle9i Enterprise Edition Release 9.2.0.4.0 - 64bit Production
    PL/SQL Release 9.2.0.4.0 - Production
    CORE 9.2.0.3.0 Production
    TNS for IBM/AIX RISC System/6000: Version 9.2.0.4.0 - Production
    NLSRTL Version 9.2.0.4.0 - Production
    SQL> select version from v$instance;
    VERSION
    9.2.0.4.0
    Regards,
    Sabdar Syed.
    null

  • I need to find password for time capsule network

    I need to reset password which i lost for Time Capsule

    It should be in the keychain in your Mac.
    If not reset is the only option.

  • What formula for finding sum of Time from cells in a row?

    Is there a template on Numbers or a simple Sum formula that i can use to add hours and minutes worked so that a cell will show total number of hours and minutes worked in a day? Thanks.

    In its bare form, the required formula would be :
    =(timeOut1-timeIn1)+(timeOut2-timeIn2)+(timeOut…-timeIn…)
    this said, you must understand that Numbers has no time items.
    It has date_time ones and, if it's Numbers '09, it has duration ones.
    A cell whose format is defined to display only a time value contains always a date component.
    Near the safari window in which I am writing is a Numbers document.
    If I type 13:58:20 in cell B2, the app starts displaying 13:58 because the contents parser which is in Automatic mode recognized that my entry was resembling to a time one. So it « decided » to display only the hours and minutes of the time component.
    If I enter the Cells Inspector and define the format to date time displaying the date and the time (with seconds), I get: 2012-04-12 13:58:20
    If the process whose start was just typed is supposed to end at 18:26, I may repeat the already described process to C2 but as quite everybody knows in this Discussions forum, I'm lazy.
    So, I select every cells supposed to receive a time value and define, temporarily, their format to date_time displaying date, time with seconds. This way I will not have to repeat that for every entry.
    In C2, I type 18:26.
    The app displays : 2012-04-12 18:26:00
    Leaving space for two other tasks, in H2, I type =C2-B2
    As I am running Numbers '09, I get 4h 27m 40s which is a duration value.
    Now, we will assume that the start time remains unchanged but that the task will end tomorrow at 5:55
    If I type this value immediately in C2, the cell will contain 2012-04-12 05:55:00 and H2 will contain -8h 3m 20s which is certainly not what you want to get.
    If I wait tomorrow before typing this end time in C2, the cell will contain 2012-04-13 05:55:00 and H2 will display the wanted value : 15h 56m 40s.
    CAUTION : the application made no error, it just did exactly what I wanted it to achieve.
    Third case, I decide to type the start and the end time when the task isfinished, say on 2012-04-14,
    B2 will contain : 2012-04-14 18:26:00
    C2 will contain : 2012-04-14 05:55:00
    and one more time we will get the infamous -8h 3m 20s which is certainly not what you want to get.
    So, it's clear that a more sophisticated formula is required.
    Here I will describe the one which I use. I guess that other helpers will describe other ones. It's the rule of the game.
    I use the function TIMEVALUE.
    =(TIMEVALUE(C2)-TIMEVALUE(B2)+IF(TIMEVALUE(C2)>TIMEVALUE(B2),0,1))*24
    which will return the durations expressed in decimal hours.
    This formula is OK as long as the task duration isn’t longer than 24 hours.
    If a task duration may be greater than 24 hours, the best scheme would be to enter full date_time values.
    For several tasks, the formula would be :
    =(TIMEVALUE(C2)-TIMEVALUE(B2)+IF(TIMEVALUE(C2)>TIMEVALUE(B2),0,1)+TIMEVALUE(E2)- TIMEVALUE(D2)+IF(TIMEVALUE(E2)>TIMEVALUE(D2),0,1)+TIMEVALUE(G2)-TIMEVALUE(F2)+IF (TIMEVALUE(G2)>TIMEVALUE(F2),0,1))*24
    Yvan KOENIG (VALLAURIS, France) jeudi 12 avril 2012
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.3
    My Box account  is : http://www.box.com/s/00qnssoyeq2xvc22ra4k

  • Hello, i need to find out my serial from PSE 7.0.10 It came together with my PC in 2001 and the is only recovery CD, now i need complete new install W7 and i want not lose the key

    Soe here it is again:
    in 2011 i boght a PB PC with recovery posibility
    II did register PSE a view minutes agoe, but it was not preferd to create also an account.
    So i create also an account with the same email adress, but when i login there is no serial displayed
    What can i do ??
    Kind regards

    If you Sign into Adobe.com with your AdobeID and password. Then use this link https://www.adobe.com/account/my-products-services.html and there is no PSE7  in you list the only other place the serial is is on the label that is affixed to original  installation CD disk jacket.  PSE  7 is 2008 software not as you wrote 2001.  In 2001 PSE1 was released in 2011 PSe 9 or 10 would have been the current version. If you bought an old PC in 2011 and it had PSE7 on it  unless the original owner and Adobe transferred the PSE licence to you. You were not in compliance with any Adobe licence agreement.  PSE is under $100 currently around $60 on Amazon so get PSE 12.....

  • Need to find out the changes from Apps 10.7 to the present release 11. x.x

    Hullo,
    I saw a link on one of the blogs that a presentation on improvements/changes/features from 10.7 onwards was available on www.oracle.com/appsnet/technology/upgrade/docs/features.html. This page is no longer available.
    Does anyone know another link where this or similar information is available?
    Salim.

    Oracle Applications Upgrade - new functionality added since 10.7 and 11
    This post contains a link to the Oracle page which will provide you with a functionality comparison between the different releases of Oracle Applications.
    If you are still on Oracle Applications R10.7 or R11 and are considering an upgrade to R11i, this Oracle Appsnet page will provide you with an understanding of what new features and capabilities have been added to Oracle E-Business Suite since R10.7 and R11. The site lists the changes by major release and by module and is very useful in understanding the differences between each major release of Oracle Applications.
    Comments:
    Hi
    The link is broken it seems
    http://www.oracle.com/appsnet/technology/upgrade/docs/features.html
    Choudhary
    Posted by Sunil on 04/26 at 12:00 PM
    Yes, Oracle re-organised their site and have moved this page without providing a redirect. If anyone know’s where this page has disappeared to please let me know as it contained some very useful content.
    Posted by Richard Byrom on 04/26 at 01:01 PM
    Does anyone know where the information now is?

  • I need to find my serial number from Itunes.  Ipod was not backed up.  It is now lost.  Is the number in Itunes someplace?

    Does ITunes save IPod serial numbers

    Hi ..
    The serial number should be on the back of the iPod.
    If not, there are ways to find the serial number >  How to find the serial number of your Apple hardware product - Apple Support

Maybe you are looking for

  • IOS 7.0.4 ACTIVATE ERROR .My All works stuck now.

    Dear sir / Mis , i  have buy iphone 4 from owner its used iphone and i restore the iphone  to the new ios 7.0.4 and the device sittle linked with the previous owner  account and the phone locked in activation lock and ask me to enter the  apple id an

  • Invoking Web Services

    Hi, I'm trying to invoke a WS. I've deployed Axis 1.2 on Odi 10.1.3.5 using OC4J. copied the odhdbc14 driver for oracle, on administration i've added the connection pool and the data source "ciccio" at jndi "jdbc/Oracle/Win" in the following way i've

  • Qosmio G30-175: DVD-RAM Drive thinks its a CD drive

    Hello people, me again. My 2 week old Qosmio G30 - 175 has a DVD-RAM drive that now appears in My Computer as a CD-Drive. Consequently (I think) it won't auto play DVD's. I can play them manually through Media Centre or WMP but no option appears in t

  • Shipping data tab in purchase order

    Hi Experts, Please let me know when does the shipping data tab get activated in purchase order.... Whether it depends on document type like NB or UB or under what scenario the shipping tab gets activated in PO item data. Regards

  • How to add Z module after realtionship creation in pp01 ?

    Hello I am using pp01 transaction for relatationship management. And I need to put some my own code when the relationship was created. Do you any way how to do that ? Is it possible ? Thank You.