Webi auditing

Our data out of the Audit File looks something like this:
User    Login date
andrews 06-30-2014
andrews 06-30-2014
andrews 07-01-2014
davis     06-30-2014
My boss takes the data and creates an Excel spreadsheet that looks like this:
Username #login days Last login #Login times
andrews        2            07-01-2014   3
Can I write a Webi that would create one line for user Andrews with the totals he wants?
I did an edit report and can get a total logins but I don't eliminate any lines.

Hi Dave,
Which version of BO you are using. If it is 3.1 then do below.
1. In left hand side of the report on Data tab right click on any object and click new variable.
2. New wondow will open .Write name of variable as "Login date".
3.in formula area on same window write
=Max([Login date]) ForEach ([User])
4. Click on ok.
5. On data tab object with Login date created. Pull this object into report.
Do the same thing for below 2 variable -
#LoginDays=Count([Login date];Distinct) ForEach([User])
#LoginTimes=Count([Login date];All) ForEach([User])
Pull these variable also in report.
Avoid Duplicate Row Aggregation:
This property you can find left hand side of the report on property tab. See in my screenshot in my first post.
-Anuj

Similar Messages

  • Monitoring of WebI Auditing notifications

    Description of Problem or Question:
    I am trying to setup Tivoli to monitor the default auditing directory.  When a WebI report fails I have enabled an auditing event to write an audit file to the default auditing directory.  The 'events per file' has been set to 1 so that a new text file is created everytime a WebI report fails with the assumption that these WebI will rarely fail.
    There are a couple strange behaviors I have noticed and am wondering if others have seen this or know a work around.
    1 - The initial audit file generated when a job fails contains no data which pretty much makes the audit event useless for identifying the report that failed.
    2 - The default auditing directory will periodically be cleared at random times, this makes it difficult to tell Tivoli how often to check the default directory.
    If a second WebI fails before the directory is cleared than an additional blank text file will be created and the previous blank text file will be updated with some details about which WebI report failed.
    Please advise if you have any other recommendations or workarounds to these issues.
    *Product\Version\Service Pack\Fixpack (if applicable):  
    XI 3.1 with SP2 on Unix
    Steps to Reproduce (if applicable):
    1 - Enable Auditing for the event server.
    2 - In CMC, set properties of WebI report to audit when a job has failed to run
    3 - Make the WebI report fail and monitor the Auditing directory.

    Hi Dave,
    Which version of BO you are using. If it is 3.1 then do below.
    1. In left hand side of the report on Data tab right click on any object and click new variable.
    2. New wondow will open .Write name of variable as "Login date".
    3.in formula area on same window write
    =Max([Login date]) ForEach ([User])
    4. Click on ok.
    5. On data tab object with Login date created. Pull this object into report.
    Do the same thing for below 2 variable -
    #LoginDays=Count([Login date];Distinct) ForEach([User])
    #LoginTimes=Count([Login date];All) ForEach([User])
    Pull these variable also in report.
    Avoid Duplicate Row Aggregation:
    This property you can find left hand side of the report on property tab. See in my screenshot in my first post.
    -Anuj

  • Problem: Oracle auditing and Coldfusion pages.

    Oracle 10g has robust auditing functionality.  If you want to see who is inserting records into account.staff, you issue this command.
    audit insert on account.staff by access;
    It's done.   All inserts into the table are tracked by Oracle automatically.
    The good news is this works perfectly with asp pages.  With coldfusion-based webpages, the CF application server interposes itself between oracle and the user.  The result?  Key bits of auditing information (i.e., user id, pc IP address) are replaced with the Cold Fusion server values.
    For example, instead of seeing the user’s ID, or name the audit trail has SYSTEM.  Instead of the user’s pc hostname we see the CF server name and IP address.
    ·         Building table specific triggers using USERENV('sessionid')in Oracle does not help
    ·         Using cgi variables in the CF pages like REMOTE_ADDR  (IP address of the remote host making the request) or REMOTE_USER  or AUTH_USER  also does not offer reliable information either.
    What is the fix?
    Our setup.  We are using:
    Oracle 10g with auditing enabled
    Coldfusion server version 8.0.0.176276
    Windows 2003 server
    Internet Information Server version 6.0
    Windows integrated authentication
    All web auditing via IIS 6.0 works fine.  It is just Oracle auditing that is a problem.
    Thank you.

    I'm not familiar with Oracle; but I'll take a guess as to why the behavior is different between ASP and CF.  I suspect that the ASP pages access the database using Windows integrated authentication and impersonation of users.  If user [email protected] logs into the ASP site the [email protected] credentials are used for database access, and this is reflected in Oracle's auditing.  ColdFusion does not use integrated authentication so all data access is handled as the user credentials setup in the CF data source and using the IP of the CF server.  I don't think that this can be changed.  As far as I know CF does not support impersonation of Windows accounts.  However, I'm not an Oracle expect so if any of this is wrong please correct me.

  • Audit reports disconnected from universe

    Hi,
    we have an issue whereby the default audit reports in an installation have no relation to the activity universe (as defined by the 'check relationship' tool in the CMC) and we cannot access the edit query panel of the reports to re-point them. Webi hangs when we try click the edit query button.
    We have imported a new set of the Webi audit report from a BIAR file but the same situation is present.
    The Activity universe is present and is working (and is in its normal location) as we can write new queries on it.
    It is an Edge XI 3.1 sp4 installation.
    Is there another way of getting the reports to 'see' the activity universe again?
    thanks
    Keith

    Moved to Universe Designer forum

  • Remove duplicates in audit report

    Hi All,
    I used below code to get recent uploaded documents in all document libraries of site collection.But  when i uploaded a document in a doc library in the grid two documents are uploaded one duplicate is adding.How can i remove this duplicate.Please help
    where i need to change the code.
    using (SPSite site = Spcontext.current.site())
                    using (SPWeb web = site.OpenWeb())
                        SPAuditQuery query = new SPAuditQuery(site);
                        query.SetRangeEnd(DateTime.Now);
                        query.SetRangeStart(DateTime.Now.AddDays(-2));
                        SPAuditEntryCollection auditCol = web.Audit.GetEntries(query);
                        DataTable dt = new DataTable();
                        dt.Columns.Add("Document");
                        dt.Columns.Add("Author");
                        dt.Columns.Add("Date");
                        foreach (SPAuditEntry audit in auditCol)
                            if ((audit.ItemType == SPAuditItemType.Document && audit.Event == SPAuditEventType.Update) && (!audit.DocLocation.Contains("_catalogs")))
                                dt.Rows.Add(Convert.ToString(site.Url + "/" + audit.DocLocation), Convert.ToString(web.AllUsers.GetByID(audit.UserId).Name), audit.Occurred);
                        UploadsGV.DataSource = dt;
                        UploadsGV.DataBind();
    Regards,
    Praveen
                            

    Hi Praveen
    before adding row to data table check whether document is already present or not in the datable ,if yes then replace or do not add to datable or if no then add to data table.
    so your function will be like
    bool isExists(datatable dt,string value)
    String sExpression ="Document == '"+value+ "'";
    DataRow[] drFound;
    drFound =dt.Select(sExpression);
    if (dr!=null && dr.Length  >0)
    return true;
    return false;
    call this as 
    if(!isExist())
            dt.Rows.Add(Convert.ToString(site.Url + "/" + audit.DocLocation),
    Convert.ToString(web.AllUsers.GetByID(audit.UserId).Name), audit.Occurred);
    Rajendra Singh
    Walking on water and developing software from a specification are easy if both are frozen
    If a post answers your question, please click Mark As Answer on that post and Vote as Helpful

  • How to Audit the data displayed within a Webi report

    Hi All,
    We have BOBJ XI R2 SP4 installed on our server.
    One of the requirements is to audit the data the user has viewed through Canned reports and also Adhoc reports created in Webi.
    I understand that we can audit what reports are accessed by the user, but not sure how to audit the data within the report. Could someone please let me know if auditing data can be acheived form SDK ? If so how ?
    Thanks,
    Sireesha

    Pablo,
    The following should get you started;
    This is a report to pull Universe Name, Report Name, Action Time (last refreshed), Action Duration (execution time), User Name and Object Name (universe objects used in reports).
    The Result Objects are as follows:
    Object Name from Actions/Action Details
    Action Time from Actions
    Action Duration from Actions
    Action Type from Actions
    Action Type Detail from Actions (detail object associated with Action Type)
    User Name from Actions
    Document Name from Actions/Document
    Universe Name from Actions/Action Details
    The Query Filters are as follows:
    Action Time between Day1 And Day2
    Note: The Query Filter is necessary (obviously) only to restrict the size of the query. I wouldn't run this query without a filter on demand. Depending on the size of your deployment, you might want to restrict the query initially to a specific universe/list of universes while testing.
    At the report level, I moved Universe Name and Document Name in to (nested) sections.
    i.e.
    Section on: Universe Name
    Section on: Document Name
    Table
    Another option would be to retrieve this information from the CMS tables using WID Scanner [here|http://www.forumtopics.com/busobj/viewtopic.php?t=80856]
    The last option would be to use the Report Engine SDK (for Webi) to write a program extract this information from the CMS tables and pass it to another table. WID scanner (above) does effectively the same thing, passes the info to an MS Access table (if I remember correctly..I may be wrong. I have'nt used it since it last tried to create a report to extract all used objects.)
    Best,
    Srinivas

  • Audit log web service for Office 365

    I am working on developing an application that will interact with the Office 365 services. I am currently able to get the files and folders of a singed-in user using the OAuth2 authentication. I am aware that we can get the audit logs and it will be exported
    to Microsoft Excel. 
    However, my question is : Is there any web service or endpoint I can use to access the logs using REST API. For example, Box provides an api/endpoint to achieve this: http://developers.box.com/docs/#events.
    Any help would be highly appreciated!
    Many Thanks 

    Currently displaying audit log reports in REST or API is not supported by Microsoft. SharePoint online in Office 365 just supports saving an audit log report as a Microsoft Excel 2012 Preview workbook.
    You can refer the following post :
    http://community.office365.com/en-us/f/172/t/164047.aspx

  • BI 4.1 auditing sample reports in WebI format ?

    Hi!
    Is it possible to get auditing sample reports in WebI format instead of Crystal format (like in previous versions of BO) ?
    When Crystal is not used by a custommer, it's a pity to install and run Crystal servers & client just for auditing reports, isn't it ?
    Regards,
    Stéphane.

    Tilak,
         All the information you need on the Audit Database can be found within the different Admin Guide and the sample UNX w/ Crystal Enterprise reports provided.
    http://help.sap.com/businessobject/product_guides/boexir4/en/xi4_bip_admin_en.pdf
    - Section 20
    http://help.sap.com/businessobject/product_guides/sbo41/en/sbo41sp4_bip_admin_en.pdf
    - Section 21
    Sample Auditing Universe and Reports for SAP BusinessObjects_4_x
    You can very easily reverse engineer the Crystal Enterprise Reports and create starter WebI reports and beyond.
    Regards,
    Ajay

  • Web Services and Custom Audit Trail

    How do I access the "Custom Audit Trail" via web services. I do not mean the few audit fields that are on each object.
    I specifically want to access this data related to the Opportunity record type, but other objects would have use also.
    Thanx

    I don't see anything in the documentation related to accessing this information but could be wrong.
    Could you use a workflow to write a event anytime a Opportunity is changed and access what you need that way?

  • Standard Web Service to get message audit log?

    Hi,
    Is there any standard web service to get the audit log of a message based on its message id?
    Thanks in advance.

    Standard web service is not available....however if you want to get the audit log details then you need to make a JCo call (if i am not wrong) to one of the SAP tables: XI_AF_MSG_AUDIT
    Regards,
    Abhishek.

  • Auditing for scheduling WebI documents

    We'd like to audit the scheduling of WebI documents.  Which auditing option do we enable so that we can tell when a scheduled document was successful?
    We're using XI 3.1.
    Thanks,
       Laura

    Hi Ashwini,
    That's what I thought, but we tried it and it's not working.  That is, after we enabled auditing "Scheduling Succeeded," I scheduled a job.  The audit data showed an action of "Document Refreshed" but not "Scheduling Succeeded."
    Anybody have an ideas about why it's not working?
    Thanks,
       Laura

  • Audit Intersection fails from Web Form

    We have an HFM 9.3.1 application successfully integrated with FDM 9.3.1, in that when navigating to a base level intersection, which has been loaded by FDM, the audit intersection option allows a drill-through analysis to the correct FDM application / location.
    This feature works perfectly OK from right clicking a grid intersection and selecting Audit Intersection. However, if a web form is used to display the same intersection and the user selects Audit Intersection the following error message is generated :-
    System Error "The signed on token is no longer valid" the web screen also displays an error stating there are localization errors and that the action is empty or missing.
    Repeatedly performing the same operation from data grids and web forms results in the web form audit always failing and grid audit always succeeding.
    Looking at the URL parameters I can see that the two sets of actions sent to generate the FDM audit page are indeed different
    I have included the source "action" parameter from the IntersectionSummarybyLocation web page. (With line breaks to aid readability)
    Repeated successful Grid Audit
    action="IntersectionSummaryByLocation.aspx?
    SSO_TOKEN=NbD9qzBZXx%2B%2BFm%2BFySzSa7uCWdYLvOAI14GJ6%2B7kFhWT2YN4lvlRfQExBNUyOMBkvAX1%2F3sfkyyu%0A3Ej8JSWj14o4Gf380eNrEeCax4fMVO28wUniiwcCepjkb6kvNhLCsKc%2FEmTctCxxd1lUmGcnalfO%0Avmc7rwQyxBAu8FtPnrtmy5REje4Epw%3D%3D&
    FDMAppName=TTGFDM&
    ScenarioLabel=Actual&
    YearLabel=2012&
    PeriodLabel=Apr&
    ViewLabel=%3CScenario%20View%3E&
    EntityLabel=CPW0005&
    ParentLabel=AOL&
    ValueLabel=%3CEntity%20Currency%3E&
    AccountLabel=PL50000&
    ICPLabel=%5BICP%20None%5D&
    Custom1Label=F6000&
    Custom2Label=%5BNone%5D&
    Custom3Label=C7142&
    Custom4Label=%5BNone%5D" id="formMain">
    Repeated failed action from web form
    action="IntersectionSummaryByLocation.aspx?
    SSO_TOKEN=NbD9qzBZXx++Fm+FySzSa7uCWdYLvOAI14GJ6+7kFhWT2YN4lvlRfQExBNUyOMBkvAX1/3sfkyyu%0A3Ej8JSWj14o4Gf380eNrEeCax4fMVO28wUniiwcCepjkb6kvNhLCsKc/EmTctCxxd1lUmGcnalfO%0Avmc7rwQyxBAu8FtPnrtmy5REje4Epw==&
    FDMAppName=TTGFDM&
    ScenarioLabel=Actual&
    YearLabel=2012&
    PeriodLabel=Apr&
    ViewLabel=%3CScenario+View%3E&
    EntityLabel=CPW0005&
    ParentLabel=AOL&
    ValueLabel=%3CEntity+Currency%3E&
    AccountLabel=PL50000&
    ICPLabel=%5BICP+None%5D&
    Custom1Label=F6000&
    Custom2Label=%5BNone%5D&
    Custom3Label=C7142&
    Custom4Label=%5BNone%5D" id="formMain"
    It would appear that the format for characters is different and the SSO_TOKEN is differrent (although this maybe by design since the calling locations are different).
    I have checked that the Grid and Web Form operations are calling the same web page encoding of Unicode (UTF-8).
    Anybody got any idea why FORM functionality is failing to display the Audit Intersection?
    Kind regards
    Colin
    Edited by: Colin Lye on Sep 15, 2011 6:26 AM

    Applied Patches 9.3.1.1 thru to 9.3.1.4 (latest).
    Problem resolved. Audit Intersections now work from both Grid and Forms.
    Incidentally, both "Action" parameters from Grid and Form are now identical including the SSO_Token.

  • Prompted for credentials when running the Recovery Audit Report on MBAM Help Desk web portal

    I am prompted for my credentials when I try to run the Recovery Audit Report on MBAM Help Desk web portal.  I am a member of the MBAM Read Only Reports group which I specified during the web portal configuration wizard.  I would like to suppress
    the prompt for credentials.

    Add the URL to the Local Intranet sites did not work.  The Help desk  web portal is on port 8088 and it does not allow you to specify the port when you add the URL to the Local Intranet sites.  I am able to access the Reports page from the
    Help Desk web portal when I open a browser on the IIS server, but the Reports page does not open without a prompt when I open a browser on a client.  Strange.

  • SAP BO WEBI Reports - Auditing, Monitoring, Statistics

    Hi WEBI experts,
    what software tools are available/recommended that can be used to track report access statistics for web intelligence reports that are using universes and also bex queries as data sources?
    (we are not interested in overall server metrics like cpu, ram, ...)
    Scenario:
    - mix of BO Reports (mainly WEBI: with both Universes and BEx Queries as data sources)
    - the reports are accessed by the users via BIP Launchpad BI Workspaces
    - we would like to find out which reports are used the most (daily, monthly, yearly) so that we have a list of all the reports that can be sorted based upon their popularity, where popularity is either the overall number of times the report was opened or the overall number of the unique users who opened the report; how many users opened each report and how many times over a selected time period
    Any suggestions for suitable software or tutorials that can be used for webi reports monitoring opened via bip launchpad?
    Thanks a lot!
    Kind regards,
    David Gyurasz

    David, your requirement can be achieved by using Auditing in BO. Connect to your Audit database. In the below link you are having Auditing Schema and tables list.
    Business Objects: The story of auditing in SAP BI 4.0
    BusinessObjects Auditing - Considerations & Enabling
    BusinessObjects Auditing - What is changed in BO 4.0?

  • Excel Web Access(An error has occurred.Please contact your system administrator if this problem persists. )

    I'm using share point 2007 under windows server 2008 R2(one web server, another db server).When I publish a excel(*.xlsx) to report library or view it in web browser with the same error as bellows:
    Excel Web Access
    An error has occurred.
    Please contact your system administrator if this problem persists.
    Please kindly support to guide how to fix it with bellow information in details such as log.Many thanks!
    1. The 12/logs file is as bellows:
    10/10/2014 09:53:55.18  w3wp.exe (0x6528)                        0x5C08 Excel Services               
     Excel Calculation Services     2u7d Medium   ExcelServerSharedWebApplication.Local: An exception was thrown by configdb infrastructure: System.InvalidOperationException: ExcelServerSharedWebApplication.Local: Could
    not get ServerContext.Current, which indicates that either SharePoint or the SSP infrastructure isn't provisioned correctly or that we're running outside of a web context.     at Microsoft.Office.Excel.Server.ExcelServerSharedWebApplication.get_Local(). 
    10/10/2014 09:53:55.18  w3wp.exe (0x6528)                        0x5C08 Excel Services               
     Excel Services Administration  8tqh Critical Excel Services: Unexpected exception while trying to access Shared Services Database;. Error = ExcelServerSharedWebApplication.Local: Could not get ServerContext.Current, which indicates that
    either SharePoint or the SSP infrastructure isn't provisioned correctly or that we're running outside of a web context.. 
    10/10/2014 09:53:55.18  w3wp.exe (0x6528)                        0x5C08 Excel Services               
     Excel Web Access               6nfi Unexpected InternalEwr.OpenWorkbook - An unexpected exception in the ECS Proxy occurred. Message: Microsoft.Office.Excel.Server.ExcelServerSettingException:
    An error has occurred. ---> System.InvalidOperationException: ExcelServerSharedWebApplication.Local: Could not get ServerContext.Current, which indicates that either SharePoint or the SSP infrastructure isn't provisioned correctly or that we're running
    outside of a web context.     at Microsoft.Office.Excel.Server.ExcelServerSharedWebApplication.get_Local()     --- End of inner exception stack trace ---     at Microsoft.Office.Excel.Server.ExcelServerSharedWebApplication.get_Local()    
    at Microsoft.Office.Excel.Server.ExcelServerSettings.get_Settings()     at Microsoft.Office.Excel.Server.ExcelServerSettings.get_EcsList()     at Microsoft.Office... 
    2.the event in event viewer is:
    Log Name:      Security
    Source:        Microsoft-Windows-Security-Auditing
    Date:          2014/10/10 9:49:43
    Event ID:      4625
    Task Category: Logon
    Level:         Information
    Keywords:      Audit Failure
    User:          N/A
    Computer:      ***.net
    Description:
    An account failed to log on.
    Subject:
     Security ID:  NULL SID
     Account Name:  -
     Account Domain:  -
     Logon ID:  0x0
    Logon Type:   3
    Account For Which Logon Failed:
     Security ID:  NULL SID
     Account Name:  ***
     Account Domain:  ***
    Failure Information:
     Failure Reason:  An Error occured during Logon.
     Status:   0xc000006d
     Sub Status:  0x0
    Process Information:
     Caller Process ID: 0x0
     Caller Process Name: -
    Network Information:
     Workstation Name: ***
     Source Network Address: ***
     Source Port:  63664
    Detailed Authentication Information:
     Logon Process:  
     Authentication Package: NTLM
     Transited Services: -
     Package Name (NTLM only): -
     Key Length:  0
    This event is generated when a logon request fails. It is generated on the computer where access was attempted.
    The Subject fields indicate the account on the local system which requested the logon. This is most commonly a service such as the Server service, or a local process such as Winlogon.exe or Services.exe.
    The Logon Type field indicates the kind of logon that was requested. The most common types are 2 (interactive) and 3 (network).
    The Process Information fields indicate which account and process on the system requested the logon.
    The Network Information fields indicate where a remote logon request originated. Workstation name is not always available and may be left blank in some cases.
    The authentication information fields provide detailed information about this specific logon request.
     - Transited services indicate which intermediate services have participated in this logon request.
     - Package name indicates which sub-protocol was used among the NTLM protocols.
     - Key length indicates the length of the generated session key. This will be 0 if no session key was requested.
    Event Xml:
    <Event xmlns="">
      <System>
        <Provider Name="Microsoft-Windows-Security-Auditing" Guid="{54849625-5478-4994-A5BA-3E3B0328C30D}" />
        <EventID>4625</EventID>
        <Version>0</Version>
        <Level>0</Level>
        <Task>12544</Task>
        <Opcode>0</Opcode>
        <Keywords>0x8010000000000000</Keywords>
        <TimeCreated SystemTime="2014-10-10T01:49:43.563436300Z" />
        <EventRecordID>37602685</EventRecordID>
        <Correlation />
        <Execution ProcessID="532" ThreadID="26096" />
        <Channel>Security</Channel>
        <Computer>***.net</Computer>
        <Security />
      </System>
      <EventData>
        <Data Name="SubjectUserSid">S-1-0-0</Data>
        <Data Name="SubjectUserName">-</Data>
        <Data Name="SubjectDomainName">-</Data>
        <Data Name="SubjectLogonId">0x0</Data>
        <Data Name="TargetUserSid">S-1-0-0</Data>
        <Data Name="TargetUserName">***</Data>
        <Data Name="TargetDomainName">***</Data>
        <Data Name="Status">0xc000006d</Data>
        <Data Name="FailureReason">%%2304</Data>
        <Data Name="SubStatus">0x0</Data>
        <Data Name="LogonType">3</Data>
        <Data Name="LogonProcessName">
        </Data>
        <Data Name="AuthenticationPackageName">NTLM</Data>
        <Data Name="WorkstationName">***</Data>
        <Data Name="TransmittedServices">-</Data>
        <Data Name="LmPackageName">-</Data>
        <Data Name="KeyLength">0</Data>
        <Data Name="ProcessId">0x0</Data>
        <Data Name="ProcessName">-</Data>
        <Data Name="IpAddress">***</Data>
        <Data Name="IpPort">63664</Data>
      </EventData>
    </Event>

    Hi Tracy,
    Have you changed something on your SharePoint 2007 environment recently before this issue occurred?
    This issue may be related to Alternate Access Mappings settings like the following similar post, if you have configured AAM, you can check if this issue happened to some URLs, if it's the case, please add the problematic URLs as a Publish URLs for the default
    zone for your web application, and also add these URLs as trusted locations, then check results again.
    If above doesn't work, please enable ULS log on verbose level to get more useful log errors which time are corresponding to the errors occur. 
    https://social.technet.microsoft.com/Forums/en-US/c9ab4818-65c9-444d-be50-1bfed1f1509b/excel-web-access-web-part-works-on-intranet-but-not-internet?forum=sharepointgenerallegacy
    http://blog.bugrapostaci.com/2011/09/08/how-to-enable-verbose-log-mode-on-moss-2007/
    Thanks
    Daniel Yang
    TechNet Community Support

Maybe you are looking for

  • How can i open windows in separate domains in air?

    I need to partition my windows into separate domains in a desktop application. I have a MMOG that was running several .swf instances at a time that has been converted to AIR to take advantage of some of the AIR only api's.  Now I have found it is not

  • SQL Tuning- slow query on GL_BALANCES- Explain plan provided

    Hi- I really need some help here. The following SQL statement has been identified to perform poorly. It currently takes from 2-3 minutes to execute. I see it is because GL_BALANCES has so many rows. Is there any way around this? Explain and info belo

  • How to increase GB to install ios 8.0.2

    Help! What do I need to delete to be able to download ios 8.0.2. I have 17.2 GB used and need to have 4.8 GB available to install new system. I've deleted apps   and didn't even make a dent. I tried to delete music but not sure I'm doing it right. Sh

  • Is SunMC the tool of choice?

    Hello, world! I'd like to hear your oppinon: is SunMC the tool of choice, and if so, what modules do I need? I'd like to have my Sun server hardware monitored, in addtion to the Solaris monitoring we already have with BMC Patrol. The tool should tell

  • Nano won't shuffle

    I have an 8GB nano and when I select shuffle (either for a single artist of for a playlist) the first song keeps repeating and will not go through the tracks without my pressing the 'next' button. I downloaded a manual but this told me to change the