Triggers and user activity.

hi, is it possible to create a trigger that will fire if a row or record is read during a query?
What I've been told is that triggers can only fire on,
Update,delete, and insert
Can anyone out there give me an asnwer to this. thanks.

I have thought of a way to do this in 8i (although I wouldn't recommend it). My example uses the EMP table from the SCOTT schema.
Create a table to hold audit info:
create table emp_audit_trail
  ( empno      number
  , username   varchar2(30)
  , audit_date date ); Create a function to save audit info, note the PRAGMA statement:
create function audit_emp
  ( p_empno     number )
return varchar2
is
  pragma autonomous_transaction;
begin
  insert into emp_audit_trail
    ( empno
    , username
    , audit_date )
  values
    ( p_empno
    , USER
    , SYSDATE );
  commit;
  return 'Y';
end; The PRAGMA ensures that the COMMIT is performed in a seperate transaction to the SELECT statement.
Now create a view over the EMP table:
create emp_v
as
select *
from   emp
where  audit_emp(emp_no) = 'Y';If you revoke public access to the EMP table, and ensure that everyone uses EMP_V, all SELECTs will be recorded in the Audit Trail table.

Similar Messages

  • Oracle 9i and user activity logging

    Hi,
    i am new on the matter but i have to trace the user activity and build a small application.
    those are the specifications :
    i'm using oracle 9i database version on 64 bit
    the O.S. used is Unix Aix 5.2
    for each data base we using i have to trace the user activity all of them, about 3 DB + application
    i have create some some triggers to get some information, but still the work is there :
    create trigger ... after logoff on database .. begin insert into table xx_tab ( ,,,,) end ;
    create trigger ... after ddl on database .. begin insert into table xx_tab ( ,,,,) end ;
    create trigger ... after logon on database .. begin insert into table xx_tab ( ,,,,) end ;
    create trigger ... after servererror on schema .. begin insert into table xx_tab ( ,,,,) end ;
    Here is the issue i am faced to /
    how could we simulate a create trigger ... after DML on database or schema ? as far as i know we trigger a DML only on a specific table. Is there any possibility to trigger a DML on any database object or schema?
    for the moment i don't know if it 's the good think to do but, but it's a try, if you have any idea or other methods to trace the user activities on DB, please don't hesitate to get me informed.
    Rgds,
    Paul

    This is the forum for the SQL Developer tool. You'll get more answers in the General or SQL And PL/SQL forums.
    Regards,
    K.

  • Flex apps and users activity monitoring

    Hi
    My question is simple : is there a way to monitor users
    activity inside a Flex app ?
    Best regards

    In that case you have to set up appropriate state variable
    representing the things you want to track, then pass them to your
    db using any of the available communication services available.
    Personally I'M using CF with RemoteObjects and writing the
    necessary CFC functions to handle the data updates. I also use the
    SharedObject to capture state in case the user happens to hit
    'refresh' or 'back' in their browser.

  • 10gR3 installation issue (#1): User Activity portlet not working

    I installed a clean 10gR3, full install in windows / sql server. I haven't installed anything that didn't come included, so no analytics / publisher / collab / etc. The documentation is somewhat lacking, but I don't think I did anything wrong.
    So when I added the User Status and User Activity portlets to a my page, the user status portlet works, but the user Activity portlet doesn't show any of my previous statuses.
    I looked in my Notification (CNS) database, and I can see my old status, so I know that they are getting in there correctly.
    Looking at PTSPY, there seems to be some issue with a login token (and yes, I did copy the value from PTSERVERCONFIG wtih settingid 65 into the configurator).
    the following is what is displayed in PTSPY when the portlet refresh button is clicked on the User Activities portlet. As you can see, there is a lot of 'guest user', even though I am logged in as administrator.
    ALI Logging Spy Version 6.1
    ** Log file written at 4-10-2009 11:50:51.
    ID     DATE      TIME      LEVEL     COMPONENT     APPLICATION     THREAD     LOCATION     MESSAGE
    ==     ======      ========      ====     =========     ===========     =====     ========     =======
    0     4-10-2009     11:50:25.327     Action     UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #1     com.plumtree.uiinfrastructure.interpreter.Interpreter     Entering handleRequest: GET http://localhost:80/portal/server.pt/gateway/PTARGS_6_0_203_0_100_43/ <ptLogMsgEnd>
    1     4-10-2009     11:50:25.327     Action     Gateway     portal.house-2aojhum1o.Administrator     .NET #1     com.plumtree.uiinfrastructure.activityspace.utils.GatewayHandlers     Entering HandleGatewayRequest: GET http://localhost:80/portal/server.pt/gateway/PTARGS_6_0_203_0_100_43/ <ptLogMsgEnd>
    2     4-10-2009     11:50:25.327     Info     Gateway     portal.house-2aojhum1o.Administrator     .NET #1     com.plumtree.uiinfrastructure.activityspace.utils.GatewayHandlers     Current user: 1, Administrator <ptLogMsgEnd>
    3     4-10-2009     11:50:25.327     Info     UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #1     com.plumtree.uiinfrastructure.login.SSOAuthenticator     SSO is disabled globally. <ptLogMsgEnd>
    4     4-10-2009     11:50:25.327     Info     Core     portal.house-2aojhum1o.Administrator     .NET #1     com.plumtree.server.impl.core.PTBaseObjectManager     Opening and querying for object with Id: 203 and Class Id: 43 <ptLogMsgEnd>
    5     4-10-2009     11:50:25.397     Info     PortletProvider     portal.house-2aojhum1o.Administrator     .NET #1     com.plumtree.server.impl.portlet.providers.CSPPortletProvider     CSPPortletProvider.GetContentURL, content ID is 5, URL is http://house-2aojhum1o:21030/activityservice/useractivityfeed.jsf <ptLogMsgEnd>
    6     4-10-2009     11:50:25.397     Info     PortletProvider     portal.house-2aojhum1o.Administrator     .NET #1     com.plumtree.server.impl.portlet.providers.CSPPortletProvider     Portlet ID 203, User ID 1 = CSPPortletProvider.GetContent accessing [http://house-2aojhum1o:21030/activityservice/useractivityfeed.jsf] <ptLogMsgEnd>
    7     4-10-2009     11:50:25.397     Info     PortletProvider     portal.house-2aojhum1o.Administrator     .NET #1     com.plumtree.server.impl.portlet.providers.CSPPortletProvider     Portlet ID 203, User ID 1 = CSPPortletProvider.GetContent: Gateway timeout is set to 1200000 ms. <ptLogMsgEnd>
    8     4-10-2009     11:50:25.397     Info     PortletProvider     portal.house-2aojhum1o.Administrator     .NET #1     com.plumtree.server.impl.portlet.providers.CSPRequest     CSPRequest : setting HTTP method to GET <ptLogMsgEnd>
    9     4-10-2009     11:50:25.407     Info     Core     portal.house-2aojhum1o.Administrator     .NET #1     com.plumtree.server.impl.core.TokenUtility     PTTokenUtility::CreateToken TOKENS: Creating token for: 1|1239378925| <ptLogMsgEnd>
    10     4-10-2009     11:50:25.537     Action     UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.interpreter.Interpreter     Entering handleRequest: GET http://localhost:80/portal/server.pt/gateway/PTARGS_0_0_206_0_0_47/cns/rss/2432353235346261352D396130342D346665372D396538362D3661326262363961643535342433354445364146382D414242362D346539622D423445312D44314643343932463242453800000005.xml <ptLogMsgEnd>
    11     4-10-2009     11:50:25.547     Action     Gateway     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.activityspace.utils.GatewayHandlers     Entering HandleGatewayRequest: GET http://localhost:80/portal/server.pt/gateway/PTARGS_0_0_206_0_0_47/cns/rss/2432353235346261352D396130342D346665372D396538362D3661326262363961643535342433354445364146382D414242362D346539622D423445312D44314643343932463242453800000005.xml <ptLogMsgEnd>
    12     4-10-2009     11:50:25.557     Info     UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.login.TokenAuthenticator     TokenAuthenticator::UseThisAuth: checking if there's a replication token. <ptLogMsgEnd>
    13     4-10-2009     11:50:25.557     Info     UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.login.Authenticator     Logging in as guest user: 2 <ptLogMsgEnd>
    14     4-10-2009     11:50:25.557     Info     Portal_UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.portaluiinfrastructure.login.PTLoginHelper     Entering attemptGuestLogin(), guest userid = 2 <ptLogMsgEnd>
    15     4-10-2009     11:50:25.557     Info     Portal_UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.portaluiinfrastructure.login.PTLoginHelper     Entering internalLogin() <ptLogMsgEnd>
    16     4-10-2009     11:50:25.557     Info     Core     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.server.impl.core.PTSession     Connected as user "Guest" <ptLogMsgEnd>
    17     4-10-2009     11:50:25.557     Info     UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.login.LoginHelper     Entering DoTasksAfterLogin() <ptLogMsgEnd>
    18     4-10-2009     11:50:25.557     Info     Portal_UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.portaluiinfrastructure.login.PTPersonalSettingsHelper     Entering CachePersonalSettings() <ptLogMsgEnd>
    19     4-10-2009     11:50:25.557     Info     Core     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.server.impl.core.PTBaseObjectManager     Opening and querying for object with Id: 2 and Class Id: 1 <ptLogMsgEnd>
    20     4-10-2009     11:50:25.597     Warning     Portal_Common     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.portalpages.pei.PTLoginActions     Unable to find browser locale list to map locale to ui supported locale from accept-language header . Using default system locale. <ptLogMsgEnd>
    21     4-10-2009     11:50:25.597     Info     Portal_Common     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.portalpages.pei.PTLoginActions     Setting user language based on supported locale of en-us from accept-language header <ptLogMsgEnd>
    22     4-10-2009     11:50:25.597     Info     Gateway     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.activityspace.utils.GatewayHandlers     Current user: 2, Guest <ptLogMsgEnd>
    23     4-10-2009     11:50:25.597     Info     Gateway     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.activityspace.utils.GatewayHandlers     Redirecting to login page due to insufficient privileges. <ptLogMsgEnd>
    24     4-10-2009     11:50:25.597     Info     UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.login.Authenticator     Redirecting to login space Login <ptLogMsgEnd>
    25     4-10-2009     11:50:25.597     Info     UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.activityspace.Redirect     Attempting to use SetSpaceCreateNew method with a null parent AActivitySpace. <ptLogMsgEnd>
    26     4-10-2009     11:50:25.597     Info     UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.login.SSOAuthenticator     SSO is disabled globally. <ptLogMsgEnd>
    27     4-10-2009     11:50:25.597     Info     Gateway     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.activityspace.utils.GatewayHandlers     HandleGatewayRequest returning control to Interpreter to process login page. <ptLogMsgEnd>
    28     4-10-2009     11:50:25.597     Action     Gateway     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.activityspace.utils.GatewayHandlers     Leaving HandleGatewayRequest (returning control flow to the interpreter) - User ID: 2 <ptLogMsgEnd>
    29     4-10-2009     11:50:25.597     Info     UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.login.TokenAuthenticator     TokenAuthenticator::UseThisAuth: checking if there's a replication token. <ptLogMsgEnd>
    30     4-10-2009     11:50:25.597     Info     UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.interpreter.Interpreter     Current user: 2, Guest <ptLogMsgEnd>
    31     4-10-2009     11:50:25.597     Info     UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.interpreter.Interpreter     Redirecting to http://localhost/portal/server.pt?redirect=http%3A%2F%2Flocalhost%2Fportal%2Fserver.pt%2Fgateway%2FPTARGS_0_0_206_0_0_47%2Fcns%2Frss%2F2432353235346261352D396130342D346665372D396538362D3661326262363961643535342433354445364146382D414242362D346539622D423445312D44314643343932463242453800000005.xml&space=Login&cached=false <ptLogMsgEnd>
    32     4-10-2009     11:50:25.607     Action     UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.interpreter.Interpreter     Leaving handleRequest - User ID: 2 <ptLogMsgEnd>
    33     4-10-2009     11:50:25.697     Action     UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.interpreter.Interpreter     Entering handleRequest: GET http://localhost:80/portal/server.pt?redirect=http%3A%2F%2Flocalhost%2Fportal%2Fserver.pt%2Fgateway%2FPTARGS_0_0_206_0_0_47%2Fcns%2Frss%2F2432353235346261352D396130342D346665372D396538362D3661326262363961643535342433354445364146382D414242362D346539622D423445312D44314643343932463242453800000005.xml&space=Login&cached=false <ptLogMsgEnd>
    34     4-10-2009     11:50:25.697     Info     UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.login.TokenAuthenticator     TokenAuthenticator::UseThisAuth: checking if there's a replication token. <ptLogMsgEnd>
    35     4-10-2009     11:50:25.697     Info     UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.login.Authenticator     Logging in as guest user: 2 <ptLogMsgEnd>
    36     4-10-2009     11:50:25.697     Info     Portal_UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.portaluiinfrastructure.login.PTLoginHelper     Entering attemptGuestLogin(), guest userid = 2 <ptLogMsgEnd>
    37     4-10-2009     11:50:25.697     Info     Portal_UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.portaluiinfrastructure.login.PTLoginHelper     Entering internalLogin() <ptLogMsgEnd>
    38     4-10-2009     11:50:25.697     Info     Core     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.server.impl.core.PTSession     Connected as user "Guest" <ptLogMsgEnd>
    39     4-10-2009     11:50:25.707     Info     UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.login.LoginHelper     Entering DoTasksAfterLogin() <ptLogMsgEnd>
    40     4-10-2009     11:50:25.707     Info     Portal_UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.portaluiinfrastructure.login.PTPersonalSettingsHelper     Entering CachePersonalSettings() <ptLogMsgEnd>
    41     4-10-2009     11:50:25.707     Info     Core     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.server.impl.core.PTBaseObjectManager     Opening and querying for object with Id: 2 and Class Id: 1 <ptLogMsgEnd>
    42     4-10-2009     11:50:25.717     Warning     Portal_Common     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.portalpages.pei.PTLoginActions     Unable to find browser locale list to map locale to ui supported locale from accept-language header . Using default system locale. <ptLogMsgEnd>
    43     4-10-2009     11:50:25.717     Info     Portal_Common     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.portalpages.pei.PTLoginActions     Setting user language based on supported locale of en-us from accept-language header <ptLogMsgEnd>
    44     4-10-2009     11:50:25.717     Info     UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.interpreter.Interpreter     Current user: 2, Guest <ptLogMsgEnd>
    45     4-10-2009     11:50:25.717     Info     UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.interpreter.MVCController     Current space is Login <ptLogMsgEnd>
    46     4-10-2009     11:50:25.727     Info     UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.interpreter.MVCController     Redirect after login QS param: http://localhost/portal/server.pt/gateway/PTARGS_0_0_206_0_0_47/cns/rss/2432353235346261352D396130342D346665372D396538362D3661326262363961643535342433354445364146382D414242362D346539622D423445312D44314643343932463242453800000005.xml <ptLogMsgEnd>
    47     4-10-2009     11:50:25.727     Info     UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.interpreter.MVCController     current control is DefaultLoginControl <ptLogMsgEnd>
    48     4-10-2009     11:50:25.727     Info     UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.interpreter.Interpreter     Displaying page Login <ptLogMsgEnd>
    49     4-10-2009     11:50:25.727     Info     Portal_Common     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.portalpages.common.uiparts.PlumtreeDP     Displaying page layout Base Page using Page Layout with ID 40 <ptLogMsgEnd>
    50     4-10-2009     11:50:25.747     Info     Portal_Common     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.portalpages.common.uiparts.PlumtreeDP     Displaying page layout Login Page using Page Layout with ID 46 <ptLogMsgEnd>
    51     4-10-2009     11:50:25.757     Action     UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #8     com.plumtree.uiinfrastructure.interpreter.Interpreter     Leaving handleRequest - User ID: 2 <ptLogMsgEnd>
    52     4-10-2009     11:50:25.918     Error     Storybook Logger     activityservice.house-2aojhum1o.Administrator     http-21030-exec-3     java.lang.Class     Error in retrieving CNS feed: com.sun.syndication.io.ParsingFeedException: Invalid XML: Error on line 1: White spaces are required between publicId and systemId.
    com.sun.syndication.io.ParsingFeedException: Invalid XML: Error on line 1: White spaces are required between publicId and systemId.
         at com.sun.syndication.io.WireFeedInput.build(WireFeedInput.java:182)
         at com.sun.syndication.io.SyndFeedInput.build(SyndFeedInput.java:122)
         at com.bea.shaboo.impl.support.UserActivityBean.getActivityList(UserActivityBean.java:74)
         at com.bea.shaboo.impl.support.UserActivityBean.getActivityStreamModel(UserActivityBean.java:177)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at org.apache.myfaces.el.PropertyResolverImpl.getProperty(PropertyResolverImpl.java:400)
         at org.apache.myfaces.el.PropertyResolverImpl.getValue(PropertyResolverImpl.java:71)
         at org.apache.myfaces.el.ELParserHelper$MyPropertySuffix.evaluate(ELParserHelper.java:532)
         at org.apache.commons.el.ComplexValue.evaluate(ComplexValue.java:145)
         at org.apache.myfaces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:378)
         at javax.faces.component.UIData.getValue(UIData.java:779)
         at org.apache.myfaces.component.html.ext.HtmlDataTableHack.createDataModel(HtmlDataTableHack.java:350)
         at org.apache.myfaces.component.html.ext.HtmlDataTableHack.getDataModel(HtmlDataTableHack.java:333)
         at org.apache.myfaces.component.html.ext.HtmlDataTableHack.getRowCount(HtmlDataTableHack.java:75)
         at org.apache.myfaces.custom.datalist.HtmlListRenderer.encodeChildren(HtmlListRenderer.java:107)
         at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:319)
         at javax.faces.webapp.UIComponentTag.encodeChildren(UIComponentTag.java:343)
         at javax.faces.webapp.UIComponentTag.doEndTag(UIComponentTag.java:251)
         at org.apache.myfaces.taglib.UIComponentBodyTagBase.doEndTag(UIComponentBodyTagBase.java:55)
         at org.apache.jsp.useractivityfeed_jsp._jspx_meth_t_005fdataList_005f0(useractivityfeed_jsp.java:442)
         at org.apache.jsp.useractivityfeed_jsp._jspx_meth_h_005fform_005f0(useractivityfeed_jsp.java:247)
         at org.apache.jsp.useractivityfeed_jsp._jspx_meth_f_005fview_005f0(useractivityfeed_jsp.java:178)
         at org.apache.jsp.useractivityfeed_jsp._jspService(useractivityfeed_jsp.java:108)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:393)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:320)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:266)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:654)
         at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:445)
         at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:379)
         at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:292)
         at org.apache.myfaces.context.servlet.ServletExternalContextImpl.dispatch(ServletExternalContextImpl.java:415)
         at org.apache.myfaces.application.jsp.JspViewHandlerImpl.renderView(JspViewHandlerImpl.java:234)
         at org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:352)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:107)
         at org.apache.myfaces.webapp.MyFacesServlet.service(MyFacesServlet.java:74)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at com.bea.shaboo.impl.servlet.RequestedUserFilter.doFilter(RequestedUserFilter.java:61)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at com.bea.shaboo.impl.servlet.AccountCreationFilter.doFilter(AccountCreationFilter.java:57)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at com.bea.shaboo.impl.servlet.KodoSessionFilter.doFilter(KodoSessionFilter.java:52)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at com.bea.shaboo.impl.servlet.ShabooSecurityFilter.doFilter(ShabooSecurityFilter.java:74)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at com.bea.shaboo.impl.servlet.InitializationCheckFilter.doFilter(InitializationCheckFilter.java:42)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:263)
         at org.apache.coyote.http11.Http11NioProcessor.process(Http11NioProcessor.java:887)
         at org.apache.coyote.http11.Http11NioProtocol$Http11ConnectionHandler.process(Http11NioProtocol.java:696)
         at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.run(NioEndpoint.java:2009)
         at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:650)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:675)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: org.jdom.input.JDOMParseException: Error on line 1: White spaces are required between publicId and systemId.
         at org.jdom.input.SAXBuilder.build(SAXBuilder.java:468)
         at org.jdom.input.SAXBuilder.build(SAXBuilder.java:851)
         at com.sun.syndication.io.WireFeedInput.build(WireFeedInput.java:178)
         ... 71 more
    Caused by: org.xml.sax.SAXParseException: White spaces are required between publicId and systemId.
         at org.apache.xerces.util.ErrorHandlerWrapper.createSAXParseException(Unknown Source)
         at org.apache.xerces.util.ErrorHandlerWrapper.fatalError(Unknown Source)
         at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)
         at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)
         at org.apache.xerces.impl.XMLScanner.reportFatalError(Unknown Source)
         at org.apache.xerces.impl.XMLScanner.scanExternalID(Unknown Source)
         at org.apache.xerces.impl.XMLDocumentScannerImpl.scanDoctypeDecl(Unknown Source)
         at org.apache.xerces.impl.XMLDocumentScannerImpl$PrologDispatcher.dispatch(Unknown Source)
         at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
         at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
         at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
         at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
         at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
         at org.apache.xerces.jaxp.SAXParserImpl$JAXPSAXParser.parse(Unknown Source)
         at org.jdom.input.SAXBuilder.build(SAXBuilder.java:453)
         ... 73 more
    <ptLogMsgEnd>
    53     4-10-2009     11:50:26.128     Info     PortletProvider     portal.house-2aojhum1o.Administrator     .NET #1     com.plumtree.server.impl.portlet.providers.CSPPortletProvider     CSPPortletProvider.GetContent: Receieved full response. Request state is [Processing of this request has completed successfully.] <ptLogMsgEnd>
    54     4-10-2009     11:50:26.128     Info     Transformers     portal.house-2aojhum1o.Administrator     .NET #1     com.plumtree.server.impl.portlet.transformers.TurboParser     found unique namespace token '$PORTLET_ID$' <ptLogMsgEnd>
    55     4-10-2009     11:50:26.128     Info     Transformers     portal.house-2aojhum1o.Administrator     .NET #1     com.plumtree.server.impl.portlet.transformers.TurboParser     found a token <ptLogMsgEnd>
    56     4-10-2009     11:50:26.128     Info     PortletProvider     portal.house-2aojhum1o.Administrator     .NET #1     com.plumtree.server.impl.portlet.providers.GatewayContent     GatewayContent : constructing text response with status code 200 and Content-Type text/html <ptLogMsgEnd>
    57     4-10-2009     11:50:26.128     Info     Gateway     portal.house-2aojhum1o.Administrator     .NET #1     com.plumtree.uiinfrastructure.activityspace.utils.GatewayHandlers     Displaying page GatewayBinary <ptLogMsgEnd>
    58     4-10-2009     11:50:26.138     Action     Gateway     portal.house-2aojhum1o.Administrator     .NET #1     com.plumtree.uiinfrastructure.activityspace.utils.GatewayHandlers     Leaving HandleGatewayRequest (request completed) - User ID: 1 <ptLogMsgEnd>
    59     4-10-2009     11:50:26.138     Action     UI_Infrastructure     portal.house-2aojhum1o.Administrator     .NET #1     com.plumtree.uiinfrastructure.interpreter.Interpreter     Leaving handleRequest - pre filter terminated execution. <ptLogMsgEnd>

    I had the same problem. I identified some issues with the way this portlet works. There is a work around, but not a good one. To fix this portlet, I had to go into config manager, 'Aqualogic Notification Service -> RSS Feeds' and uncheck 'Gateway RSS Feed URLs'. This makes that portlet work properly, the side effect is that it breaks all of the RSS Feeds in collab. So, to get around that you have to go add a gateway config to all of the collab portlets' web services... I meant to submit a trouble ticket, but never got around to it. We aren't using that portlet currently, so I bailed on the work around.

  • Can i recover my all active directory domain computers and users from IFM and in-cooperate them in new forest ??

    My only Active Directory Server on win server 2008 R2 with one domain controller crashed today. The only backup that i had was IFM media.
    So what i have done till now to recover it is a follow
    I reintalled window server but this time it is winserver 2012. I added AD DS role to it. Promoted it to Domain Controller. (functionality level is 2008 R2)
    On second server i installed win 2008 R2 and trying to add additional domain controller from IFM to recover all of my domain users,computers and GPO's. but i am getting this error
    Could not replicate the directory partition CN=schema, CN= configuration, DC=XXX, DC=com from the remote domain
    the naming context specified for this replication operation is invalid
    i dont know weather my approach is correct or not
    but my simple questions is
    Can i recover my all domain computers and users from IFM and in-cooperate them in new forest ?? if yes how can i do that?? urgent help required.

    yup exactly i created a new domain(in new forest) with same previous name in window server 2012 on SERVER-1. As ifm file that i had was generated from 2008 r2 so on second server i installed window 2008 r2 and tried to add role of additional domain controller
    from ifm file on SERVER-2 using dcpromo /adv . every step went ok but in last step when it starts replicating domain controllers it poup following error
    Could not replicate the directory partition CN=schema, CN= configuration, DC=XYZ, DC=com. .  .
    and roll backs every thing.

  • SCCM report to show last logged on user and the Active Directory department attribute of that user.

    I need to create an SCCM report to show last logged on user on all machines and the Active Directory department attribute of that last logged on user.

    You problem is here.
    right
    join v_R_User USR on USR.ResourceID
    = CS.ResourceID
    USR.ResourceID != CS.ResourceID, you need to map the username to the user logon to the PC. By using the user’s department information you will
    end up with unreliable results.
    Anyways you need to make these changes to your query.
    left
    join v_R_User USR on USR.Unique_User_Name0
    = CS.UserName0
    http://www.enhansoft.com/

  • HT201210 nowadays have many user have problem with update to ios7 and need active with apple id maybe in the future in order escape from these problems must be stop use these products else. Because of simple user don't know about this technology and somet

    nowadays have many user have problem with update to ios7 and need active with apple id maybe in the future in order escape from these problems must be stop use these products else. Because of simple user don't know about this technology and sometime just hear from other user that it 's difficult to use then force they change phone that use to handle to another.

    It is a feature to discourage the theft of iPhones by making them useless if resold. It's not going anywhere. It's simple: just don't buy a phone until you make sure that the activation lock has been disabled.

  • User base Synchronization between SAP and MS Active Directory Server

    Dear all!
    I'm using Web AS 6.20 ABAP and MS Active Directory Server based on Win 2003 Server.
    i successfully implemented the synchronization of user data between SAP and the ADS.
    My question: Is there a way to customize the users on Active Directory Server in regard to their SAP authorization (roles auth. objects etc.)?
    Currently I don't have a clue how to do this.
    Regards,
    Christoph

    Have you searched on SDN for "Active Directory"? That turns up a number of results. I think your expectation might be backwards though, it's not how ADS exposes SAP specific data but how SAP uses ADS to store SAP specific data. My understanding (from quite some time ago so I am fuzzy on this) is that SAP can use ADS in much the same way it can use LDAP as an external user store.
    The Security Newsletter from November 04 [https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/documents/a1-8-4/sap security newsletter november 2004.pdf] mentions that a webinar is hosted on SDN about this exact topic, unfortunately I was unable to find a direct link.
    Regards,
    Marc g

  • Segregation of  global layout and user Specific  for IW38 with Activity 23

    Hi All,
    We have issue that users are able to change the Global Layout in IW38 transaction codes, which is causing lot of confusion for other users. Please can anyone help me to do some investigation around how the access to Global Layout and User-Specific layout can be segregated.
      We would like to achieve below things:
    1)     Can we control provision access in such way users can only change layout specific to them?
    2)     They should not be able to change Global Layout
    3)     List of roles having Authorization object S_ALV_LAYO with activity 23.
    If anyone already faced this issue, can you please let me know how they resolved it
    Thanks in Advance.

    Hi David,
    > The standard S_ALV_LAYO object is, so far as I know, no use for normal day to day end users as it over-rides the restrictions?
    It's up to the business, but ours wanted the managers to set a global layout for all other users to display only... as sort of a standard report.  I agree with you in the challenge of determining who to give the long-term S_ALV_LAYO w/23 global maintenance access.  We used to have this S_ALV_LAYO in every role that contained a report access (honest design mistake), hence that is why we created a separate role contained just S_ALV_LAYO w/ 23 access  --> to managers only. 
    In our generic system role that is given to everyone, we have both S_ALV_LAYO (as blank) and F_IT_ALV (as 01, 02) so all non-manager users are able to create/save local layout & still view global layout.
    F_IT_ALV activity 70 gives the authority to overwrite other's local layout (the "Manage Layout" access), so we only gave 01  and 02.  Be careful here, as giving 03 (display) will make all other activities inactive.
    Best,
    Alice

  • Tracking User Activity with Standard Web Logs and Tools Like WebTrends

    We are running EP 6 SP14 on UNIX and I'm looking to track user activity.  Not just how many people have logged in, but who is accessing what documents in KM.  For example, what documents are the most popular and how much use the system is getting.
    I was hoping that EP 6 (Unix platform) ran off us some standard web engine (like Apache) and we could just turn web logs on, but from the lack of discussion on SDN, I'm not encouraged.
    All I've seen is unofficial link to a Portal Activity Report, which would get us part of the way, but is not full web reporting.
    Portal Activity Report:
    https://www.sdn.sap.com/irj/sdn?id=/library/uuid/0101b690-0201-0010-6584-a02730ad5edd
    Does anyone have any insight on this?

    HI llise
    Did you get any answers? We are in the same quandry as the exisitng tracking reports are not sufficient for our needs as our users are used to using more sophisticated tools like livestat.

  • EWA reporting: Not showing User Activity and Transaction Activity

    Hello everyone!
    Got 3 systems in EWA reporting, 2 systems works fine i can see User and Transaction Activity with diagrams etc.
    But 1 of them showing User activity = 0 and no Transaction activity also.
    Any ideias to solve it?

    Hi Daniyar,
    I am also facing the same problem, can you let me know what sort of patches need to be applied to overcome this issue??
    Regards,
    BASIS.

  • Auditing user activity in Oracle 9i

    I need to provide some kind of measure of user activity in our Oracle DB.
    Essentially we are trying to find low consumers who perhaps have little or no need for access to the database, perhaps they do one enquiry a day or only access information once a week.
    However, if they log in every day, all day, it doesn't necessary mean they are a havy user of the database, they may never actually query or update anything.
    With that in mind, is it possible to provide activity auditing in Oracle 9i, with new or existing procedures?
    For one application our users share an Oracle account but their OS User would always identify them.
    So ultimately I would like to report:
    For last week Oracle DB usage of database XYZ is:
    User Os User Consumption
    ADAM Adam 1000
    GSPAM SpamG 900
    SLACKA ASlack 877
    PINT ASlack 876
    PINT Adam 854
    I have no idea one might measure consumption!
    Thanks

    cubittm, I have done what you are asking about.
    Depending on how much detail you want you can set up database event logon and logoff triggers to capture this information.
    On logoff you update a statistics row with the values from v$sesstat for the logging off session for those statistics you want to measure. Note, you will not be able to capture statistics for session that abnormally terminate since the logoff trigger does not fire in that case.
    All you actually need is a logoff trigger and one row per user to get totals. If you want details then you need one row per day or a set of rows for every logon/logoff depending on how much detail you want to collect.
    If you generate data for every logon/logoff the data quantity can build up very fast depending on your application user load. If the target table fills then no one can logon so make sure you have adequate space available and a purge process. This process will not work very well if everyone logs in via a single application id and connection pooling is in use.
    HTH -- Mark D Powell --

  • What is the difference between customer exits and user exits?

    hello friends,
    what is the difference between customer exits and user exits?

    Hi
    User exit - A user exit is a three character code that instructs the system to access a program during system processing.
    SXX: S is for standard exits that are delivered by SAP.   XX represents the 2-digit exit number.
    UXX: U is for user exits that are defined by the user.  XX represents the 2-digit exit number
    Customer exit - The R/3 enhancement concept allows you to add your own functionality to SAP’s standard business applications without having to modify the original applications. SAP creates customer exits for specific programs, screens, and menus within standard R/3 applications. These exits do not contain any functionality. Instead, the customer exits act as hooks. You can hang your own add-on functionality onto these hooks.     *-- Mani
    The following document is about exits in SAP :-
    The R/3 enhancement concept allows you to add your own functionality to SAP’s standard business applications without having to modify the original applications. 
    SAP creates user exits for specific programs, screens, and menus within standard R/3 applications. These exits do not contain any functionality. Instead, the customer exits act as hooks. You can hang your own add-on functionality onto these hooks.
    Types of Exits 
    There are several different types of user exits. Each of these exits acts as hooks where you can attach or "hang" your own add-ons.
    Menu Exits
    Menu exits add items to the pulldown menus in standard SAP applications. You can use these menu items to call up your own screens or to trigger entire add-on applications.
    SAP creates menu exits by defining special menu items in the Menu Painter. These special entries have function codes that begin with "+" (a plus sign). You specify the menu item’s text when activating the item in an add-on project.
    Screen Exits
    Screen exits add fields to screens in R/3 applications. SAP creates screen exits by placing special subscreen areas on a standard R/3 screen and calling a customer subscreen from the standard screen’s flow logic.
    Function Module Exits 
    Function module exits add functions to R/3 applications. Function module exits play a role in both menu and screen exits. 
    When you add a new menu item to a standard pull down menu, you use a function module exit to define the actions that should take place once your menu is activated. 
    Function module exits also control the data flow between standard programs and screen exit fields. SAP application developers create function module exits by writing calls to customer functions into the source code of standard R/3 programs. 
    These calls have the following syntax: 
    CALL CUSTOMER-FUNCTION ‘001’.
    Field Exits
    Field exits allow you to create your own programming logic for any data element in the Dictionary. You can use this logic to carry out checks, conversions, or business-related processing for any screen field.  Example: The data element BBBNR identifies a company’s international location number. You might want to set up your R/3 System so that all international location numbers are larger than 100. 
    The field exit concept lets you create a special function module that contains this logic. 
    You assign the special function module to the data element BBBNR. You then assign the module to any programs and screens in which users can add new international location numbers. When you activate your field exit, the system automatically triggers your special routine whenever a user enters a company location number. 
    In 4.6c, you can use "RSMODPRF" program to create field exits.
    An example of a user exits :-
    MODULE user_exit_0001 INPUT 
        CASE okcode.
            WHEN 'BACK OR EXIT'.
                CASE sy-dynnr.
                        WHEN '100'.
                             SET SCREEN 0.
                             LEAVE SCREEN.
                        WHEN '200'.
                             SET SCREEN 100.
                             LEAVE SCREEN.
                 ENDCASE.
          ENDCASE.

  • Diff b/w "Customer exits" and "User-exit"

    Hi,
    What is the difference b/w customer exits and user-exit and also please explain me what are the various types of customer and user-exits.
    Thanks in advance.
    Ramana

    Hi,
    Types of Exits
    There are several different types of customer exits. Each of these exits acts as hooks where you can attach or "hang" your own add-ons.
    Menu Exits
    Menu exits add items to the pulldown menus in standard SAP applications. You can use these menu items to call up your own screens or to trigger entire add-on applications.
    SAP creates menu exits by defining special menu items in the Menu Painter. These special entries have function codes that begin with "+" (a plus sign). You specify the menu item’s text when activating the item in an add-on project.
    Screen Exits
    Screen exits add fields to screens in R/3 applications. SAP creates screen exits by placing special subscreen areas on a standard R/3 screen and calling a customer subscreen from the standard screen’s flow logic.
    Function Module Exits
    Function module exits add functions to R/3 applications. Function module exits play a role in both menu and screen exits. When you add a new menu item to a standard pulldown menu, you use a function module exit to define the actions that should take place once your menu is activated. Function module exits also control the data flow between standard programs and screen exit fields.
    SAP application developers create function module exits by writing calls to customer functions into the source code of standard R/3 programs. These calls have the following syntax: CALL CUSTOMER-FUNCTION ‘001’.
    <b>User exits:</b>
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/abap/abap-code-samples/userexits%20in%20a%20transaction.doc
    In order to find out the user exits for any tcode,
    1. get the developement class of the tcode from SE93.
    2. Now goto transaction SMOD and press F4,
    3. give in the Deve class in the dev class and Press ENTER
    this will show u the exits for any tcode.
    or execute this report
    http://www.erpgenie.com/sap/abap/code/abap26.htm
    which gives the list of exits for a tcode
    http://help.sap.com/saphelp_nw04/helpdata/en/bf/ec079f5db911d295ae0000e82de14a/frameset.htm
    For information on Exits, check these links
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sapgenie.com/abap/code/abap26.htm
    http://www.sap-img.com/abap/what-is-user-exits.htm
    http://wiki.ittoolbox.com/index.php/HOWTO:Implement_a_screen_exit_to_a_standard_SAP_transaction
    http://www.easymarketplace.de/userexit.php
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sappoint.com/abap/userexit.pdfUser-Exit
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.ficoexpertonline.com/downloads/User%20ExitsWPedit.doc
    http://www.easymarketplace.de/userexit.php
    http://help.sap.com/saphelp_nw04/helpdata/en/c8/1975cc43b111d1896f0000e8322d00/content.htm
    Check out these links too...
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sapgenie.com/abap/code/abap26.htm
    http://www.sap-img.com/abap/what-is-user-exits.htm
    http://wiki.ittoolbox.com/index.php/HOWTO:Implement_a_screen_exit_to_a_standard_SAP_transaction
    http://www.easymarketplace.de/userexit.php
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sappoint.com/abap/userexit.pdfUser-Exit
    http://www.planetsap.com/userexit_main_page.htm
    http://wiki.ittoolbox.com/index.php/HOWTO:Implement_a_screen_exit_to_a_standard_SAP_transaction
    USER EXITS
    https://forums.sdn.sap.com/click.jspa?searchID=672084&messageID=312792
    https://forums.sdn.sap.com/click.jspa?searchID=672084&messageID=1320078
    https://forums.sdn.sap.com/click.jspa?searchID=672084&messageID=2669896
    ****Reward points if helpful.
    All the best

  • Updated to Mavericks. Now theres tons of activity in my terminal and my activity monitor doesn't seem normal. I want to think someone's hacking me, but i need experienced help please!

    I spent all night trying to fix this. It seems to me that someone has been trying to hack into my system with all of the random codes/lines in my terminal and i have all of his foreign IP addresses. And now i get this strange message that popped up in my terminal. Idk what it entirely means? I would very appreciate if someone could just walk me through this. Thank you very much.
    First time poster. I have Macbook Pro. OSX. Just downloaded the new mavericks. I'm i have my firewall on. I stay secure. I run Netbarrier, Virusbarrier, IdentityScrubber.
    I know something is a little odd or just doesn't make since about my activity monitor. Then my WiFi was hacked last night and this person was writing tons lines of commands/codes that i found in my terminal and my activity monitor doesn't look normal,  and I've only been a mac owner for about a year now and i'm learning more and more but while trying to figure out what was going on this message popped up which concerned me the most. Any help would be most appreciated, thanks guys. I have my terminal full of his foreign ip addresses i noticed, and a lot of other commands and lines he wrote out that i definitely did not type myself. Can anyone give me a hand on this? Thanks
    --- 192.168.1.103 ping statistics ---
    10 packets transmitted, 0 packets received, 100.0% packet loss
    Extol:~ FBI$ who
    FBI      console  Nov  7 02:14
    FBI      ttys000  Nov  7 04:33
    Extol:~ FBI$ whois
    usage: whois [-aAbdgiIlmQrR6] [-c country-code | -h hostname] [-p port] name ...
    Extol:~ FBI$ whois 192.168.1.103
    # ARIN WHOIS data and services are subject to the Terms of Use
    # available at: https://www.arin.net/whois_tou.html
    # Query terms are ambiguous.  The query is assumed to be:
    #     "n 192.168.1.103"
    # Use "?" to get help.
    # The following results may also be obtained via:
    # http://whois.arin.net/rest/nets;q=192.168.1.103?showDetails=true&showARIN=false& ext=netref2
    NetRange:       192.168.0.0 - 192.168.255.255
    CIDR:           192.168.0.0/16
    OriginAS:
    NetName:        PRIVATE-ADDRESS-CBLK-RFC1918-IANA-RESERVED
    NetHandle:      NET-192-168-0-0-1
    Parent:         NET-192-0-0-0-0
    NetType:        IANA Special Use
    Comment:        These addresses are in use by many millions of independently operated networks, which might be as small as a single computer connected to a home gateway, and are automatically configured in hundreds of millions of devices.  They are only intended for use within a private context  and traffic that needs to cross the Internet will need to use a different, unique address.
    Comment:
    Comment:        These addresses can be used by anyone without any need to coordinate with IANA or an Internet registry.  The traffic from these addresses does not come from ICANN or IANA.  We are not the source of activity you may see on logs or in e-mail records.  Please refer to http://www.iana.org/abuse/answers
    Comment:
    Comment:        These addresses were assigned by the IETF, the organization that develops Internet protocols, in the Best Current Practice document, RFC 1918 which can be found at:
    Comment:        http://datatracker.ietf.org/doc/rfc1918
    RegDate:        1994-03-15
    Updated:        2013-08-30
    Ref:            http://whois.arin.net/rest/net/NET-192-168-0-0-1
    OrgName:        Internet Assigned Numbers Authority
    RegDate:
    Updated:        2012-08-31
    Ref:            http://whois.arin.net/rest/org/IANA
    OrgTechHandle: IANA-IP-ARIN
    OrgTechName:   Internet Corporation for Assigned Names and Number
    OrgTechPhone: 
    OrgTechEmail:
    OrgTechRef:    http://whois.arin.net/rest/poc/IANA-IP-ARIN
    OrgAbuseHandle: IANA-IP-ARIN
    OrgAbuseName:   Internet Corporation for Assigned Names and Number
    OrgAbusePhone
    OrgAbuseEmail: 
    OrgAbuseRef:    http://whois.arin.net/rest/poc/IANA-IP-ARIN
    # ARIN WHOIS data and services are subject to the Terms of Use
    # available at: https://www.arin.net/whois_tou.html
    Extol:~ FBI$
    Extol:~ FBI$ hosts
    -bash: hosts: command not found
    Extol:~ FBI$ who
    FBI      console  Nov  7 02:14
    FBI      ttys000  Nov  7 04:33
    Extol:~ FBI$ whois
    usage: whois [-aAbdgiIlmQrR6] [-c country-code | -h hostname] [-p port] name ...
    Extol:~ FBI$ whois  192.168.0.0 - 192.168.255.255
    # ARIN WHOIS data and services are subject to the Terms of Use
    # available at: https://www.arin.net/whois_tou.html
    # Query terms are ambiguous.  The query is assumed to be:
    #     "n 192.168.0.0"
    # Use "?" to get help.
    # The following results may also be obtained via:
    # http://whois.arin.net/rest/nets;q=192.168.0.0?showDetails=true&showARIN=false&ex t=netref2
    NetRange:       192.168.0.0 - 192.168.255.255
    CIDR:           192.168.0.0/16
    OriginAS:
    NetName:        PRIVATE-ADDRESS-CBLK-RFC1918-IANA-RESERVED
    NetHandle:      NET-192-168-0-0-1
    Parent:         NET-192-0-0-0-0
    NetType:        IANA Special Use
    Comment:        These addresses are in use by many millions of independently operated networks, which might be as small as a single computer connected to a home gateway, and are automatically configured in hundreds of millions of devices.  They are only intended for use within a private context  and traffic that needs to cross the Internet will need to use a different, unique address.
    Comment:
    Comment:        These addresses can be used by anyone without any need to coordinate with IANA or an Internet registry.  The traffic from these addresses does not come from ICANN or IANA.  We are not the source of activity you may see on logs or in e-mail records.  Please refer to http://www.iana.org/abuse/answers
    Comment:
    Comment:        These addresses were assigned by the IETF, the organization that develops Internet protocols, in the Best Current Practice document, RFC 1918 which can be found at:
    Comment:        http://datatracker.ietf.org/doc/rfc1918
    RegDate:        1994-03-15
    Updated:        2013-08-30
    Ref:            http://whois.arin.net/rest/net/NET-192-168-0-0-1
    OrgName:        Internet Assigned Numbers Authority
    OrgId:          IANA
    Updated:        2012-08-31
    Ref:            http://whois.arin.net/rest/org/IANA
    OrgTechHandle: IANA-IP-ARIN
    OrgTechName:   Internet Corporation for Assigned Names and Number
    OrgTechPhone: 
    OrgTechEmail
    OrgTechRef:    http://whois.arin.net/rest/poc/IANA-IP-ARIN
    OrgAbuseHandle: IANA-IP-ARIN
    OrgAbuseName:   Internet Corporation for Assigned Names and Number
    OrgAbusePhone: 
    OrgAbuseEmail:
    OrgAbuseRef:    http://whois.arin.net/rest/poc/IANA-IP-ARIN
    # ARIN WHOIS data and services are subject to the Terms of Use
    # available at: https://www.arin.net/whois_tou.html
    Whois Server Version 2.0
    Domain names in the .com and .net domains can now be registered
    with many different competing registrars. Go to http://www.internic.net
    for detailed information.
    No match for "-".
    >>> Last update of whois database: Thu, 07 Nov 2013 13:19:14 UTC <<<
    NOTICE: The expiration date displayed in this record is the date the
    registrar's sponsorship of the domain name registration in the registry is
    currently set to expire. This date does not necessarily reflect the expiration
    date of the domain name registrant's agreement with the sponsoring
    registrar.  Users may consult the sponsoring registrar's Whois database to
    view the registrar's reported date of expiration for this registration.
    TERMS OF USE: You are not authorized to access or query our Whois
    database through the use of electronic processes that are high-volume and
    automated except as reasonably necessary to register domain names or
    modify existing registrations; the Data in VeriSign Global Registry
    Services' ("VeriSign") Whois database is provided by VeriSign for
    information purposes only, and to assist persons in obtaining information
    about or related to a domain name registration record. VeriSign does not
    guarantee its accuracy. By submitting a Whois query, you agree to abide
    by the following terms of use: You agree that you may use this Data only
    for lawful purposes and that under no circumstances will you use this Data
    to: (1) allow, enable, or otherwise support the transmission of mass
    unsolicited, commercial advertising or solicitations via e-mail, telephone,
    or facsimile; or (2) enable high volume, automated, electronic processes
    that apply to VeriSign (or its computer systems). The compilation,
    repackaging, dissemination or other use of this Data is expressly
    prohibited without the prior written consent of VeriSign. You agree not to
    use electronic processes that are automated and high-volume to access or
    query the Whois database except as reasonably necessary to register
    domain names or modify existing registrations. VeriSign reserves the right
    to restrict your access to the Whois database in its sole discretion to ensure
    operational stability.  VeriSign may restrict or terminate your access to the
    Whois database for failure to abide by these terms of use. VeriSign
    reserves the right to modify these terms at any time.
    The Registry database contains ONLY .COM, .NET, .EDU domains and
    Registrars.
    # ARIN WHOIS data and services are subject to the Terms of Use
    # available at: https://www.arin.net/whois_tou.html
    # Query terms are ambiguous.  The query is assumed to be:
    #     "n 192.168.255.255"
    # Use "?" to get help.
    # The following results may also be obtained via:
    # http://whois.arin.net/rest/nets;q=192.168.255.255?showDetails=true&showARIN=fals e&ext=netref2
    NetRange:       192.168.0.0 - 192.168.255.255
    CIDR:           192.168.0.0/16
    OriginAS:
    NetName:        PRIVATE-ADDRESS-CBLK-RFC1918-IANA-RESERVED
    NetHandle:      NET-192-168-0-0-1
    Parent:         NET-192-0-0-0-0
    NetType:        IANA Special Use
    Comment:        These addresses are in use by many millions of independently operated networks, which might be as small as a single computer connected to a home gateway, and are automatically configured in hundreds of millions of devices.  They are only intended for use within a private context  and traffic that needs to cross the Internet will need to use a different, unique address.
    Comment:
    Comment:        These addresses can be used by anyone without any need to coordinate with IANA or an Internet registry.  The traffic from these addresses does not come from ICANN or IANA.  We are not the source of activity you may see on logs or in e-mail records.  Please refer to http://www.iana.org/abuse/answers
    Comment:
    Comment:        These addresses were assigned by the IETF, the organization that develops Internet protocols, in the Best Current Practice document, RFC 1918 which can be found at:
    Comment:        http://datatracker.ietf.org/doc/rfc1918
    RegDate:        1994-03-15
    Updated:        2013-08-30
    Ref:            http://whois.arin.net/rest/net/NET-192-168-0-0-1
    OrgName:        Internet Assigned Numbers Authority
    OrgId:          IANA
    RegDate:
    Updated:        2012-08-31
    Ref:            http://whois.arin.net/rest/org/IANA
    OrgTechHandle: IANA-IP-ARIN
    OrgTechName:   Internet Corporation for Assigned Names and Number
    OrgTechPhone:
    OrgTechEmail
    OrgTechRef:    http://whois.arin.net/rest/poc/IANA-IP-ARIN
    OrgAbuseHandle: IANA-IP-ARIN
    OrgAbuseName:   Internet Corporation for Assigned Names and Number
    OrgAbusePhone: 
    OrgAbuseEmail: 
    OrgAbuseRef:    http://whois.arin.net/rest/poc/IANA-IP-ARIN
    # ARIN WHOIS data and services are subject to the Terms of Use
    # available at: https://www.arin.net/whois_tou.html
    <Personal Information Edited by Host>

    haha, so now i'm thinking. I'm learning the terminal as fast as i can but there are several lines of codes and commands in there that throws up red flags to me that i don't fully understand. It just looks fishy too me. It would be highly appreciated if someone could just check this out just to tell me that i don't need to worry about it. Or point me in the right direction. I just feel un easy about this. ha.

Maybe you are looking for

  • Report of PO wise MIRO and GRN

    Dear all is there any standard report to know the PO wise MIRO and GRN details. This is required to be run periodically for a range of PO. Points will be given thanks sap

  • Bex Analyser : Date Format error.

    Hi All, We are facing date format error, while running the query in Bex analyzer. We have one column in report i.e Net Payment Date, so when we run the query in analyzer the single date like "5-6-2010 is getting swapped like 6-5-10 & year also showin

  • Camera Raw Plug-in Question

    First off, please excuse me if this is a stupid question.  I'm still learning my way around CS5 and Lightroom so please bear with me.  So when selecting any of the "Edit-In" options in Lightroom (as in Panorama, HDR in Photoshop etc) I get an error m

  • The firefox icon is greyed out but works

    the firefox icons on desktop and folder all greyed out. they work to connect, but i'd like original icon. i have re-installed software 3 times with same result. o/s win 7 pro with added sp1

  • Where can i find remarks in oralce applications

    Hi, I have an old instance. 11.5.9. I need to find the remarks in it. Can any one help where to look plz. Regards