OBIEE 11 g - truncate, not around numbers after the decimal

Hello

I'm working on a report on Oracle BIEE 11 g (11.1.1.6.12) where I have some scientific figures that shouldn't be rounded.  For example, I have a few 0.999999999012345678901 in the database.  His shown as 1.0 in the results on the Web page.  The problem is I want it displays 0.999999 in other words, I want to truncate after 6 decimal places and ignore the rest of the value.  I don't want to round.    Another example: it is a 123.99999999999999912345789 value in the database, but its presentation as 124,0 on report.   Once again, I want to only see 123.999999 on the report.

Right now I look at the properties of the columns-> Data Format.  There is a checkbox for "Substitute default data Format" and the drop-down options menu is customized.    Y at - it Digital Format custom that I can use?

Fine thanks

Found the answer. For those looking

Right click and go to edit the formula (instead of column properties) in the formula column, it should be "Your_table.your_column", I added TRUNCATE ("your_table.your_column", 5) and click Save.  I used 5 because I need to go to the fifth decimal place.

Click Ok.

Click the results tab and your desired results should appear.

Tags: Business Intelligence

Similar Questions

  • to remove the numbers after the decimal point and round

    Hi all


    select       (sum(case when (F.ITEM_UOM = 'Cubic Feet' and upper(substr(H.SLURRY_TYPE,1,3)) <> upper('Top')) then
    
                (((((H.SLURRY_VOL_ACTUAL * 5.6146)/H.SLURRY_YIELD)*94)/2000)   )
    
                 when (F.ITEM_UOM = 'Cubic Feet' and upper(substr(H.SLURRY_TYPE,1,3)) = upper('Top')) then
             (   ((nvl(H.CLASS_V_CEMENT,0)*94)/2000)   )  
    
            when F.ITEM_UOM =  'Pound' then 
          CEIL(  ROUND((((((H.SLURRY_VOL_ACTUAL * 5.6146)/DECODE(H.SLURRY_YIELD,0,NULL,H.SLURRY_YIELD)))*94)*F.ITEM_PERCENT/100)))/2000
           end)*(j.opn_value/2))  SUM_MAT_ACT_TON ,--------transport
                       
    
                       sum(case when (F.ITEM_UOM = 'Cubic Feet' and upper(substr(H.SLURRY_TYPE,1,3)) <> upper('Top')) then 
    
                ((H.SLURRY_VOL_ACTUAL * 5.6146)/H.SLURRY_YIELD)
    
          when (F.ITEM_UOM = 'Cubic Feet' and upper(substr(H.SLURRY_TYPE,1,3)) = upper('Top')) then 
    
                nvl(H.CLASS_V_CEMENT,0)
                   
            when F.ITEM_UOM =  'Pound' then 
                ROUND(((ROUND(((H.SLURRY_VOL_ACTUAL * 5.6146)/DECODE(H.SLURRY_YIELD,0,NULL,H.SLURRY_YIELD)))*94)*F.ITEM_PERCENT/100 )/P.ATTRIBUTE5)
    
       end) SUM_sload ,    ----sload
       sum(case when (F.ITEM_UOM = 'Cubic Feet' and upper(substr(H.SLURRY_TYPE,1,3)) <> upper('Top')) then 
    
                ((H.SLURRY_VOL_ACTUAL * 5.6146)/H.SLURRY_YIELD)
    
         -- when (F.ITEM_UOM = 'Cubic Feet' and upper(substr(H.SLURRY_TYPE,1,3)) = upper('Top')) then 
    
              --  nvl(H.CLASS_V_CEMENT,0)
                   
            when F.ITEM_UOM =  'Pound'  and F.BLEND <> 'PH'then 
                ROUND(((ROUND(((H.SLURRY_VOL_ACTUAL * 5.6146)/DECODE(H.SLURRY_YIELD,0,NULL,H.SLURRY_YIELD)))*94)*F.ITEM_PERCENT/100 )/P.ATTRIBUTE5)
    
       end) BLENDING
      ,e.opn_job_desc
         FROM xxnp_opn_joblog_001 E,
              XXNP_OPN_JOBLOG_EST_002   F,
              XXNP_OPN_JOBLOG_STAGE_002 G,
              XXNP_OPN_JOBLOG_SLURRY_003 H,
        XXNP_OPN_JOBLOG_RES_005 J,
         MTL_SYSTEM_ITEMS_B P 
          WHERE E.OPN_JOB_DESC   = 'K/D/SP158/SA399/1338/D/0510/1' AND
            E.MANUAL='N'
       and J.opn_resource_desc='4X4  PICK-UP OR LIGHT VEHICLES'
        AND E.OPN_JOBLOG_001_ID = J.OPN_JOBLOG_001_ID 
         and F.INVENTORY_ITEM_ID=P.INVENTORY_ITEM_ID
           AND p.ORGANIZATION_ID='103'
          AND E.OPN_JOBLOG_001_ID = G.OPN_JOBLOG_001_ID
            AND G.OPN_JOBLOG_006_ID = H.OPN_JOBLOG_006_ID
            AND H.OPN_JOBLOG_007_ID = F.OPN_JOBLOG_007_ID
            AND G.OPN_JOBLOG_006_ID = H.OPN_JOBLOG_006_ID
            AND H.OPN_JOBLOG_007_ID = F.OPN_JOBLOG_007_ID
                                    GROUP BY E.OPN_JOB_DESC,j.opn_value
    o/p  i am getting
    SUM_MAT_ACT_TON      SUM_SLOAD                         BLENDING                                   OPN_JOB_DESC
    11587.7954154787         1957.62401925833               1454.62401925833                       K/D/SP158/SA399/1338/D/0510/1
    
    well can anyone guide me on  obtaining the following output (to remove decimal places and round )
    
    SUM_MAT_ACT_TON      SUM_SLOAD                         BLENDING                                   OPN_JOB_DESC
    11588                           1958                                      1455                                          K/D/SP158/SA399/1338/D/0510/1
    thanking in advance

    Edited by: makdutakdu may 25, 2010 12:48
    select      round( (sum(case when (F.ITEM_UOM = 'Cubic Feet' and upper(substr(H.SLURRY_TYPE,1,3))  upper('Top')) then
    
                (((((H.SLURRY_VOL_ACTUAL * 5.6146)/H.SLURRY_YIELD)*94)/2000)   )
    
                 when (F.ITEM_UOM = 'Cubic Feet' and upper(substr(H.SLURRY_TYPE,1,3)) = upper('Top')) then
             (   ((nvl(H.CLASS_V_CEMENT,0)*94)/2000)   )  
    
            when F.ITEM_UOM =  'Pound' then
          CEIL(  ROUND((((((H.SLURRY_VOL_ACTUAL * 5.6146)/DECODE(H.SLURRY_YIELD,0,NULL,H.SLURRY_YIELD)))*94)*F.ITEM_PERCENT/100)))/2000
           end)*(j.opn_value/2)))  SUM_MAT_ACT_TON ,--------transport
    
                       round(sum(case when (F.ITEM_UOM = 'Cubic Feet' and upper(substr(H.SLURRY_TYPE,1,3))  upper('Top')) then 
    
                ((H.SLURRY_VOL_ACTUAL * 5.6146)/H.SLURRY_YIELD)
    
          when (F.ITEM_UOM = 'Cubic Feet' and upper(substr(H.SLURRY_TYPE,1,3)) = upper('Top')) then 
    
                nvl(H.CLASS_V_CEMENT,0)
    
            when F.ITEM_UOM =  'Pound' then
                ROUND(((ROUND(((H.SLURRY_VOL_ACTUAL * 5.6146)/DECODE(H.SLURRY_YIELD,0,NULL,H.SLURRY_YIELD)))*94)*F.ITEM_PERCENT/100 )/P.ATTRIBUTE5)
    
       end)) SUM_sload ,    ----sload
       round(sum(case when (F.ITEM_UOM = 'Cubic Feet' and upper(substr(H.SLURRY_TYPE,1,3))  upper('Top')) then 
    
                ((H.SLURRY_VOL_ACTUAL * 5.6146)/H.SLURRY_YIELD)
    
         -- when (F.ITEM_UOM = 'Cubic Feet' and upper(substr(H.SLURRY_TYPE,1,3)) = upper('Top')) then 
    
              --  nvl(H.CLASS_V_CEMENT,0)
    
            when F.ITEM_UOM =  'Pound'  and F.BLEND  'PH'then
                ROUND(((ROUND(((H.SLURRY_VOL_ACTUAL * 5.6146)/DECODE(H.SLURRY_YIELD,0,NULL,H.SLURRY_YIELD)))*94)*F.ITEM_PERCENT/100 )/P.ATTRIBUTE5)
    
       end)) BLENDING,
       e.opn_job_desc
         FROM xxnp_opn_joblog_001 E,
              XXNP_OPN_JOBLOG_EST_002   F,
              XXNP_OPN_JOBLOG_STAGE_002 G,
              XXNP_OPN_JOBLOG_SLURRY_003 H,
        XXNP_OPN_JOBLOG_RES_005 J,
         MTL_SYSTEM_ITEMS_B P
          WHERE E.OPN_JOB_DESC   = E.OPN_JOB_DESC  AND
            E.MANUAL='N'
       and J.opn_resource_desc='4X4  PICK-UP OR LIGHT VEHICLES'
        AND E.OPN_JOBLOG_001_ID = J.OPN_JOBLOG_001_ID
         and F.INVENTORY_ITEM_ID=P.INVENTORY_ITEM_ID
           AND p.ORGANIZATION_ID='103'
          AND E.OPN_JOBLOG_001_ID = G.OPN_JOBLOG_001_ID
            AND G.OPN_JOBLOG_006_ID = H.OPN_JOBLOG_006_ID
            AND H.OPN_JOBLOG_007_ID = F.OPN_JOBLOG_007_ID
            AND G.OPN_JOBLOG_006_ID = H.OPN_JOBLOG_006_ID
            AND H.OPN_JOBLOG_007_ID = F.OPN_JOBLOG_007_ID
                                    GROUP BY E.OPN_JOB_DESC,j.opn_value
    
  • PC has not successfully restarted after the installation of updates

    Hello

    I have been updated with Windows Update and asked to restart my PC after the installation is complete, however, my computer froze just at that moment, so I had to press the power button to force it to close. So I don't a not properly restart but forced my PC to stop and I have not a screen saying "Configuring updates" as usual (because there is no restart appropriate but just a forced to close). When I turned on my PC back, I thought that all updates have been lost or screwed up because I don't restart the PC correctly, however, instead, windows said it was "Configuring updates" (from 0% to 30%) and 30%, he said he has been stop and then rebooted my machine and these updates have been 100% configured/installed.

    So my question is, were all 100% installed as said windows updates or was it just a fake reviews? Because I forced my PC to stop rather than restart it when all updates to complete the installation.

    In addition, argues that all updates have been installed successfully in the "Installed updates" menu, too. Please let me know if it of a false notice or not.

    Thank you

    T.

    Since you have not stopped correctly after the installation of updates, updates could not configured correctly

    Follow these steps to see the Windows updates are installed on your computer.

    1. Open Windows update via Control Panel

    2. In the left pane, click view update history.

    Use a system restore to restore your system to a previous state before the installation of the updates

    =================

    1. click 'Start' and type system restore in the search box, and then click "System Restore" in the section programs.

    When you are prompted by the User Account Control feature, click "continue".

    2. do one of the following

    * If there is a recommended restore point, click on choose a different restore point and then click Next.

    * If there no restore points recommended in the list, simply click next to continue.

    3. Select a restore point in which you know that the operating system works and then click on "next".

    5. in confirmation of your restore point page, click on "Finish".

    If this post can help solve your problem, please click the 'Mark as answer"If you find it useful, mark it as useful by clicking the 'Useful' button at the top of this message. Marking a post as answer, or relatively useful, you help others find the answer more quickly.

  • Entry number of HTML does not accept the figures after the decimal point

    I use html5 number entry type. But do not accept the figures after the decimal point. Any suggestion welcome. Thank you

    The below HTML syntax works with the last update BB10.

  • Out of amount in Excel does not apply 2 digits after the decimal

    Hi all

    Hello.

    I have an RTF template that is used to pull a release of Oracle EBS R12 report in Excel format.

    There are a few fields on the report, which must present the amount in U.S. dollars. If the XML sent out with the decimals for example 123.45 then it is print correctly on the excel column. But if the XML code sends the output 123 then instead of 123.00 on what it is like 123 exit excel.

    In the "Options" text field, Type was 'normal text '. I changed the "Number" Type and number Format #, # 0.00. But still the same thing.

    It seems, when there is no zeros after the decimal point, Excel is these cells of formatting as 'General' instead of 'Number' and drop the zeros.

    Any suggestions on this please?

    Thank you.

    Published by: 985400 on February 21, 2013 10:59

    Hello

    Here is the simple solution to the problem

    Add two spaces after the 'AMOUNT' field by pressing the space bar.

    Kind regards
    Chatresh.

  • How do the box values ring to have figures after the decimal point

    How do the box values ring to have figures after the decimal point

    Thanks in advance

    Control properties editor:

    Change the representation in the floating point data Type tab type, DBL will do.

    Then go to the Page of display Format and increment 'Numbers' to something greater than 1

    That toggles the column of values on the tab change the items to % .6f, or 6 digits of precision. Uncheck sequential following, values and you're there.

    If you think that's too restrictive, go back the display Format, then select if rating and you can type anything (but, the editor has a hissing fit, so you must load chains and property [] with a property node values programmatically)

    I've been struggling to get OR improve this editor of properties of the years!

  • How to eliminate zeros after the decimal point

    Hello

    I have the columns in the table of Planner has BEGIN_DAY BEGIN_MONTH BEGIN_YEAR and the values are coming as 12.00, 11.00, 2009.00.

    In the database there are no zeros after the decimal point, but when the tables are imported into OBIEE see zeros in columns above. Is it possible to remove the zeros after the decimal place to the RPD.

    Rgds,
    Amit

    Set the data type in the physical layer int.

  • Is it possible a 0 is displayed after the decimal point when the value is rounded? (I get: 20-20, 1;) "I need 20, 0-20, 1).

    Using the effect of text "cursor", I am able to view replace "30 ° C" "35.5 ° C". My question is: is it possible a 0 is displayed after the decimal point when the value is rounded? (I get: 20-20, 1;) "I need 20, 0-20, 1). I use this code:

    Temp = effect ("Slider Control") ("Slider");

    sliderValue = Math.round(temp*10)/10;

    [sliderValue + ' ° C ' "']

    Here is the solution:

    numDecimals = 1;

    Temp = effect ("Slider Control") ("Slider");

    sliderValue = (Math.round(temp*10)/10).toFixed(numDecimals);

    sliderValue + "° C";

  • Computers on the local network does not show up after the installation of macOS Sierra

    Shared on my LAN Macs make their appearance is more after the installation of macOS Sierra. See the attached servers is checked in the preferences of the Finder and the computers appear in the list of DHCP clients on the router. I can see these computers to each other. Sharing is disabled on the computer of the Sierra. Any ideas?

    Thank you!

    p.s. I can not even 'go' to the IP address of these computers.

    Correction: I can afp: / and vnc: / to IP addresses (and so far as a temporary solution, I assigned permanent IP addresses in the router on all computers on the local network). Once I afp: on a local computer, it appears on the side bar of the Finder under shared devices, well I saw several times it appears and then disappears. Nothing has changed on the network since the installation of Sierra.

  • Satellite Pro L300 will not start until after the update of the BIOS of 1.30 to 1.50

    Dear all,

    I have a Toshiba Satelklite Pro L300 and had no problem for the last 4 years. Last Monday, I replaced my hard drive with a new one and after installing a new copy of Windows XP Pro, I have downloaded all the drivers on the official site. After my last update, I have updated the BIOS to version 1.30 to 1.50. After a few seconds my laptop has rebooted and was not able to load Windows and / or recognize my new hard drive.

    I tried several methods, using safe, optimal Bios default etc but was unsuccessful. IO could not even re - install Windows as the hard drive is not being recognized by the laptop. I've formatted the HD again through my desktop Pc, but still have the same problem.

    I am really worried and would like immediate help!

    Best regards

    Engelbert

    > I formatted the HD again through my desktop Pc, but still have the same problem.
    What happen exactly when you turn on your laptop?

    Set the BIOS as deult and try to install the original recovery image that you got with your laptop. If everything works OK that means upgrading the disk HARD was a success and there is not a serious hardware problem.

    After this check, you can try again to install Windows XP Home edition.
    Please post comments.

  • Satellite A210-199 does not start successfully after the BIOS update

    Hello

    I've got Sat A210-199.
    Yesterday I updated the BIOS, and after that problems occurred:

    While restarting my computer does not start. When I enter the BIOS after a while, it shuts down.
    I guess all this because the temperature of the CPU:

    When I do nothing it is 77 C. I don't think it's normal: (.)
    Computer is very recent, so it's probably not dust inside. And it's so hot from the start, but after the new BIOS, something bad happens.

    Why this temp is so high?
    There is no any process background or something.
    Is this normal?
    And what about this new BIOS?

    To be honest, something like this should not happen. I really don't understand why this is happening. I have updated the BIOS on friends A200 and mine P200 and everything works fine. Here on this forum we can only speculate on this issue, but what you need exactly's professional opinion.

    This probably not help but install recovery image and check with the factory settings. Make sure you also on the lower side cooling fan is not blocked and the laptop can be cooled properly. If the problem persists, you should contact the nearest authorized maintainer and clarify this issue.

    Sorry, but I don't really know what you can do in this situation. I don't see any other way to solve this problem.

    Good luck!

  • 850 - 009na M1Z34EA #ABU: CPU fan for the 850-009na feel like Phoenix does not turn down after the power - on self test unless the BIOS is entered

    Hello

    I have posted responses to other posts on this topic, but thought I'd start a new thread to gather my conclusions. I'm sorry for a trial

    This PC is virtually brand new (only a few weeks now) and otherwise perform exceptionally.

    Basically, if the machine is disconnected from the power grid (i.e. the power is off at the plug or the power cord removed), when the machine is supplied then the CPU fan turns over 2000 rpm and stays there. All the other PC that I do this too, but the fan will slow down after turning upward. I know that this is done as part of the POST to check that the fan is running.

    If I go into any installation of seed, start-up or BIOS for example (i.e. by pressing ESC or F10 etc.), the fan will slow down immediately up to 700 rpm. It will stay like that until the next time the machine is started against the cold. If I shut down the PC - watch or stop - but do not cut the power supply, then the next time the machine is started, the fan is still about 700 rpm. It is not to turn up to 2 k + RPM when lit.

    As soon as I unplug, then the next time the PC boots, it will turn to the top and I have to repeat steps - off, boot, enter the BIOS, exit and continue. It is something to do with the cold start.

    Note that I don't have to do anything in the start menu - I for example go to the BIOS settings, exit without saving the changes, and the fan will still slow. It's going in the boot sector that slows down the fan.

    When the PC started out-of-the-box, I opted for the upgrade to Windows 10 during installation. I have read in various places that people had experienced after the upgrade, so I reset the machine to factory settings (Win 8.1) and have not upgraded, but the problem persisted. However convinces me that Windows 10 has been removed completely, as when I went to restore the backup image (i.e. dating back to what I had before the factory reset) there are references to 10 Windows (for example, it says 'Continue to Windows 10' as well as various food options). I do not understand UEFI so I don't know if that was involved.

    I tried to change the power plan options "Processor power management-> cooling system strategy" on the liabilities side, but no joy there.

    I think that the fan and sensors work, based on the findings below. These readings of temp and fan are taken from AIDA64

    After starting cold (current was cut, without entering the BIOS), machine runs dry without load

    Exactly the same thing--starting in cold, but go in the BIOS, do nothing and continue. Once again, no load

    This is after power off and resarting, but to let the PC network

    After the above, I used Prime95 to put the CPU support (use of 95-100%), and after an hour, the readings are:

    Note that even so, the fan was not particularly strong, but it's at 2222 rpm as in the first reading.

    If I play at 4K (the whole point of the PC ) the CPU so far got very warm, the GPU is but his fan turns up as planned.

    In conclusion, it seems that the POST has a problem because it does not slow down the fan after the test.

    I can live with let the machine always plugged into the sector (for example, most of the time) and I guess that's what most people do, but I would like to know what the problem is (for example if it's really something 10 Windows, or a bug in the BIOS/UEFI)

    Thank you very much!

    John

    Explain you a lot of people who maybe have returned their system immediately because of this? Others might judge normal sound. Not irritable average is not coming here to complain. Others might judge her so little. They simply don't like. You will never convince me that is not a BIOS problem. As the problem resolves itself when you enter manually each time. It can be reproduced every time.

  • Start button / stop does not call stop after the upgrade of loll

    My motorcycle g has not put an end to calls after the upgrade of the KitKat Soother. Either I allows calls from the end of the setting.

    Help, please.

    using a magnetic flipcover?

  • Service SQL Server 2014 will not start start after the update sp1 (KB3058865, KB3075950, KB3094221)

    Hi, my SQL Server 2014 works very well in my server with WIndows 2012 until I installed the new day & service pack that was required for server hardening.

    I successfully installed SP1 KB 3058865 first, then discovered that the services do not start. After so much research to fix, I came with the 2 cu updates KB3075950, KB3094221 in knowing that it could solve my problem but unfortunately is not.

    I also tried to change the service account that many suggest, but his does not work.

    I tried to replace the master file & maslog but also failed.

    I tried to run etc and unique usermode and restore master db... also failed.

    Here is the log file:

    16/02/01 15:21:21.83 Server Microsoft SQL Server 2014 (SP1 - CU3) (KB3094221) - 12.0.4427.24 (X 64)
    October 10, 2015 17:18:26
    Copyright (c) Microsoft Corporation
    Standard Edition (64-bit) on Windows NT 6.2 (build 9200 :) (hypervisor)

    2016-02-01 15:21:21.84 setting the server UTC: 08:00
    2016-02-01 15:21:21.84 Server (c) Microsoft Corporation.
    2016-02-01 15:21:21.84 server all rights reserved.
    2016-02-01 15:21:21.84 server process ID is 5128.
    2016-02-01 15:21:21.86 Server system manufacturer: "Microsoft Corporation", model of system: 'Virtual Machine '.
    2016-02-01 15:21:21.86 the server's authentication mode is MIXED.
    2016-02-01 15:21:21.86 Server record SQL Server messages in file ' C:\Program Files\Microsoft SQL Server\MSSQL12. MSSQLSERVER\MSSQL\Log\ERRORLOG'.
    2016-02-01 15:21:21.86 Server service account is "NT Service\MSSQLSERVER". This is an informational message; no user action is required.
    2016-02-01 15:21:21.86 registry server startup parameters:
    -d C:\Program Files\Microsoft SQL Server\MSSQL12. MSSQLSERVER\MSSQL\DATA\master.mdf
    e C:\Program Files\Microsoft SQL Server\MSSQL12. MSSQLSERVER\MSSQL\Log\ERRORLOG
    l C:\Program Files\Microsoft SQL Server\MSSQL12. MSSQLSERVER\MSSQL\DATA\mastlog.ldf
    2016-02-01 15:21:21.86 Server startup command line parameters:
    s 'MSSQLSERVER '.
    2016-02-01 15:21:22.27 Server SQL Server has detected 1 struggling with 1 cores per socket and 1 logical processors per socket, 1 total logical processors; using 1 logical processors based on SQL Server licenses. This is an informational message; no user action is required.
    2016-02-01 15:21:22.27 Server SQL Server starts at the normal base priority (= 7). It is an informational message only. No user action is required.
    2016-02-01 15:21:22.28 Server has detected 7999 MB of RAM. This is an informational message; no user action is required.
    2016-02-01 15:21:22.28 Server using conventional memory in the memory manager.
    2016-02-01 15:21:22.33 default server collation: SQL_Latin1_General_CP1_CI_AS (us_english 1033)
    2016-02-01 15:21:22.37 Server this instance of SQL Server is a latest report by using a process ID of 1600 at 01/02/2016 15:13:12 (local) 01/02/2016 07:13:12 (UTC). This is an informational message only; no user action is required.
    2016-02-01 15:21:22.38 the maximum number of connections administrator dedicated to this server instance is '1 '.
    2016-02-01 15:21:22.38 configuration of server node: node 0: CPU mask: 0 x 0000000000000001:0 Active CPU mask: 0 x 0000000000000001:0. This message provides a description of the NUMA configuration for this computer. It is an informational message only. No user action is required.
    2016-02-01 15:21:22.40 allocation of dynamic locking using the server.  Initial allocation of blocks of lock of 2500 and 5000 per node lock owner.  It is an informational message only.  No user action is required.
    2016-02-01 15:21:22.43 spid8s start database 'master '.
    2016-02-01 15:21:22.49 Server CLR version loaded v4.0.30319.
    2016-02-01 15:21:22.51 spid8s d - 8 operations in the database 'master' (1:0). It is an informational message only. No user action is required.
    2016-02-01 15:21:22.61 Server common language features (CLR) runtime initialized using CLR version C:\Windows\Microsoft.NET\Framework64\v4.0.30319\ v4.0.30319.
    2016-02-01 15:21:22.62 spid8s 0 operations cancelled in database 'master' (1:0). It is an informational message only. No user action is required.
    2016-02-01 15:21:22.62 spid8s Recovery is writing a checkpoint in database 'master ' (1). It is an informational message only. No user action is required.
    2016-02-01 15:21:22.79 spid8s SQL Server Audit begins audits. This is an informational message. No user action is required.
    2016-02-01 15:21:22.80 spid8s SQL Server Audit has begun audits. This is an informational message. No user action is required.
    2016-02-01 15:21:22.88 spid8s Trace SQL ID 1 was launched by the "sa" login
    2016-02-01 15:21:23.28 spid8s server name is "UATCASADB". It is an informational message only. No user action is required.
    2016-02-01 15:21:23.28 spid13s A self-generated certificate was loaded successfully for encryption.
    2016-02-01 15:21:23.33 spid13s Server listens on ['none' 1433].
    2016-02-01 15:21:23.40 spid13s Server listens on ['none' 1433].
    local connections provider 2016-02-01 15:21:23.44 spid13s server is ready to accept connection on [\\.\pipe\SQLLocal\MSSQLSERVER].
    local connections provider 2016-02-01 15:21:23.44 spid13s server is ready to accept connection on [\\.\pipe\sql\query].
    2016-02-01 15:21:23.48 Server Server listens on [: 1 1434].
    2016-02-01 15:21:23.49 Server Server listening on [127.0.0.1 1434 ].
    2016-02-01 15:21:23.49 connection admin support dedicated server was created for locally listening on port 1434.
    2016-02-01 15:21:23.49 Server SQL Server attempts to save an of Service Principal name (SPN, service principal name) for the SQL Server service. Kerberos authentication is not possible, until a name for the SQL Server service is SPN. This is an informational message. No user action is required.
    2016-02-01 15:21:23.60 spid14s A new instance of the full-text filter daemon host process has been started successfully.
    2016-02-01 15:21:23.71 Server SQL Server Network Interface library successfully registered the Service Principal Name (SPN) [MSSQLSvc/UATCASADB.onenetworkbank.com.ph] for the SQL Server service.
    2016-02-01 15:21:23.72 Server SQL Server Network Interface library successfully registered the Service Principal Name (SPN) [MSSQLSvc/UATCASADB.onenetworkbank.com.ph:1433] for the SQL Server service.
    2016-02-01 15:21:23.97 spid17s start database 'msdb '.
    2016-02-01 15:21:23.98 spid18s database startup "ReportServer".
    2016-02-01 15:21:23.98 spid19s database startup 'ReportServerTempDB '.
    2016-02-01 15:21:24.03 spid9s start database 'mssqlsystemresource '.
    2016-02-01 15:21:24.08 spid9s the base resource database build version is 12.00.4427. It is an informational message only. No user action is required.
    Error logon 2016-02-01 15:21:24.11: 18401, severity: 14, State: 1.
    2016-02-01 15:21:24.11 of logon login failed for user "NT SERVICE\ReportServer". Reason: The server is in script upgrade mode. Only one administrator can connect at this time. [CLIENT: ]
    2016-02-01 15:21:24.18 spid19s 1 transactions rolled forward in the 'ReportServerTempDB' (6:0) database. It is an informational message only. No user action is required.
    2016-02-01 15:21:24.28 spid19s 0 transactions cancelled in the database 'ReportServerTempDB' (6:0). It is an informational message only. No user action is required.
    2016-02-01 15:21:24.44 spid17s 133 transactions rolled forward in the database 'msdb' (4:0). It is an informational message only. No user action is required.
    2016-02-01 15:21:24.73 spid17s 0 transactions cancelled in the database 'msdb' (4:0). It is an informational message only. No user action is required.
    2016-02-01 15:21:24.74 spid17s Recovery is writing a checkpoint in database 'msdb' (4). It is an informational message only. No user action is required.
    2016-02-01 15:21:24.79 spid9s start database 'model '.
    2016-02-01 15:21:25.01 spid9s clearing tempdb database.

    2016-02-01 15:21:25.94 spid9s start database 'tempdb '.
    2016-02-01 15:21:26.12 spid20s The Service Broker endpoint is in a disabled or stopped state.
    2016-02-01 15:21:26.12 spid20s The Database Mirroring endpoint is disabled or stopped state.
    Manager of Service Broker 2016-02-01 15:21:26.15 spid20s began.
    2016-02-01 15:21:27.32 spid8s database 'master' is upgrading script 'msdb110_upgrade.sql' of level 201328592 level 201331019.
    2016-02-01 15:21:27.32 spid8s-
    2016-02-01 15:21:27.32 spid8s start PRE_MSDB execution. SQL
    2016-02-01 15:21:27.32 spid8s-
    2016-02-01 15:21:28.36 spid8s configuration database COMPATIBILITY_LEVEL option for 100 for database 'msdb '.
    2016-02-01 15:21:28.56 spid8s-
    2016-02-01 15:21:28.56 spid8s start PRE_SQLAGENT100 execution. SQL
    2016-02-01 15:21:28.56 spid8s-
    2016-02-01 15:21:28.60 spid8s configuration database option COMPATIBILITY_LEVEL of 120 for the database 'msdb '.
    2016-02-01 15:21:28.77 spid8s Configuration option 'allow updates' goes from 1 to 1. Run the RECONFIGURE statement to install.
    2016-02-01 15:21:28.77 spid8s Configuration option 'allow updates' goes from 1 to 1. Run the RECONFIGURE statement to install.
    Error logon 2016-02-01 15:21:29.18: 18401, severity: 14, State: 1.
    2016-02-01 15:21:29.18 of logon login failed for user "NT SERVICE\ReportServer". Reason: The server is in script upgrade mode. Only one administrator can connect at this time. [CLIENT: ]
    2016-02-01 15:21:31.84 spid8s attempting to load library 'xpstar.dll' in memory. It is an informational message only. No user action is required.
    "2016-02-01 by using spid8s 15:21:31.86"xpstar.dll' version ' 2014.120.4100 ' to run the extended stored procedure 'xp_instance_regread '. This is an informational message only; no user action is required.
    2016-02-01 15:21:31.89 spid8s DBCC TRACEOFF 1717, process server ID (SPID) 8. This is an informational message only; no user action is required.
    2016-02-01 15:21:31.89 spid8s DBCC execution completed. If DBCC printed in error messages, contact your system administrator.
    2016-02-01 15:21:31.90 spid8s
    2016-02-01 15:21:31.90 spid8s create table temp_sysjobschedules
    2016-02-01 15:21:32.20 spid8s
    2016-02-01 15:21:32.20 spid8s Alter table sysdownloadlist...
    2016-02-01 15:21:32.22 spid8s
    2016-02-01 15:21:32.22 spid8s Alter table sysjobhistory...
    2016-02-01 15:21:32.24 spid8s
    2016-02-01 15:21:32.24 spid8s Alter table systargetservers...
    2016-02-01 15:21:32.25 spid8s
    2016-02-01 15:21:32.25 spid8s Alter table sysjobsteps...
    2016-02-01 15:21:32.40 spid8s Configuration option 'allow updates' goes from 1 to 0. Run the RECONFIGURE statement to install.
    2016-02-01 15:21:32.40 spid8s Configuration option 'allow updates' goes from 1 to 0. Run the RECONFIGURE statement to install.
    2016-02-01 15:21:32.42 spid8s
    2016-02-01 15:21:32.42 spid8s-
    2016-02-01 15:21:32.42 spid8s PRE_SQLAGENT100 execution. Full SQL
    2016-02-01 15:21:32.42 spid8s-
    2016-02-01 15:21:32.46 spid8s DMF pre-shaping within walking distance...
    2016-02-01 15:21:32.83 spid8s DC pre-shaping within walking distance...
    2016-02-01 15:21:32.83 spid8s check if Data collector config table exists...
    2016-02-01 15:21:32.84 spid8s State of collector of data before the update: 0
    2016-02-01 15:21:32.84 spid8s pre_dc100::Check if syscollector_collection_sets_internal table exists...
    2016-02-01 15:21:32.84 spid8s pre_dc100::Capturing Collection to define the status of temporary table...
    2016-02-01 15:21:33.05 spid8s Deleting cached generated automatically collect T - SQL packages to msdb data...
    2016-02-01 15:21:33.05 spid8s end of the DC pre-staged to level as follows.
    2016-02-01 15:21:33.05 spid8s DAC pre-shaping within walking distance...
    2016-02-01 15:21:33.06 spid8s from CAD pre-shaping within walking distance...
    2016-02-01 15:21:33.06 spid8s end of the CAD pre-staged to level as follows.
    2016-02-01 15:21:33.06 spid8s-
    2016-02-01 15:21:33.06 spid8s start execution of MSDB. SQL
    2016-02-01 15:21:33.06 spid8s-
    2016-02-01 15:21:33.19 spid8s Configuration option 'allow updates' from 0 to 1. Run the RECONFIGURE statement to install.

    2016-02-01 15:21:33.19 spid8s Configuration option 'allow updates' from 0 to 1. Run the RECONFIGURE statement to install.
    2016-02-01 15:21:33.37 spid8s check the size of the MSDB.
    2016-02-01 15:21:33.63 spid8s error: 8966, severity: 16, State: 2.
    2016-02-01 15:21:33.63 spid8s can not read and lock the page (1:56616) with lock type SH. page no ID invalid. has failed.
    2016-02-01 15:21:33.63 spid8s error: 8946, severity: 16, State: 12.
    2016-02-01 15:21:33.63 spid8s Table error: Allocation page (1:56616) has invalid header values to the PFS_PAGE page. The type is 0. Check the type, unit ID of ID and the ID of the page on the page.
    2016-02-01 15:21:33.63 spid8s error: 912, severity: 21, State: 2.
    2016-02-01 15:21:33.63 spid8s Script level upgrade for database 'master' failed because upgrade step 'msdb110_upgrade.sql' has detected 3601, an error state 5, severity 25. It is a serious condition that could interfere with the normal operation and the database is taken offline. If the error occurred during the upgrade of the 'master' database, it will prevent the entirety of a SQL Server instance to start. Review the previous entries in the error log, take appropriate corrective action and restart the database so that the script upgrade steps run until the end.
    2016-02-01 15:21:33.64 spid8s error: 3417, severity: 21, State: 3.
    2016-02-01 15:21:33.64 spid8s cannot recover the master database. SQL Server cannot run. Master of restoring a full backup, repair or rebuild. For more information on how to rebuild the master database, see the SQL Server online documentation.
    2016-02-01 15:21:33.64 spid8s stop SQL Server launched
    2016-02-01 15:21:33.64 spid8s trace SQL stopped due to server shutdown. Trace ID = "1". This is an informational message only; no user action is required.
    2016-02-01 15:21:34.70 spid8s error: 25725, severity: 16, State: 1.
    2016-02-01 15:21:34.70 spid8s an error occurred trying to empty sessions extended all running events.  Some events may be lost.
    2016-02-01 15:21:34.71 spid13s the SQL Server Network Interface library could not deregister the Service Principal Name (SPN) [MSSQLSvc/servername.urldomain] for the SQL Server service. Error: 0x2af9, State: 61. Administrator should deregister this SPN manually to avoid client authentication errors.
    2016-02-01 15:21:34.71 spid13s the SQL Server Network Interface library could not deregister the Service Principal Name (SPN) [MSSQLSvc / servername.urldomain:1433] for the SQL Server service. Error: 0x2af9, State: 61. Administrator should deregister this SPN manually to avoid client authentication errors.

    -----------------------------------------------------------------------------------------------

    I would be grateful for all the help I can get. Thank you.

    Hello

    Your question is beyond the scope of this community.

    Please repost your question in the SQL Server TechNet Forums.

    https://social.technet.Microsoft.com/forums/SQLServer/en-us/home?category=SQLServer

    TechNet Server forums.

    http://social.technet.Microsoft.com/forums/WindowsServer/en-us/home?category=WindowsServer

    See you soon.

  • My Windows Vista laptop does not start successfully after the upgrade to SP1

    I use Windows Vista Home Premium. I've updated my laptop with Vista service pack 1. After that my laptop will not start, it displays a message saying "Service Pack did not install. Restoration of the changes. Do not turn off computer. "after windows loading and then the computer restarts and the same thing repeats. I also didn't get a vista CD or a restore with my laptop CD. I tried a solution anywhere, but I couldn't find one. Please help me quickly because I do all my work laptop and I don't don't want lose my files.

    Perhaps you should review this KB

    Things to know before you download Windows Vista SP1
    http://TechNet.Microsoft.com/en-us/windowsvista/bb968859.aspx>

    Information about Windows Vista SP1
    What you need to know before you install Service Pack 1
    http://support.Microsoft.com/?kbid=936330>

    How to troubleshoot Windows Vista and Windows Server 2008 service pack installation issues
    http://support.Microsoft.com/kb/947366>

    How to uninstall Windows Vista SP1 as a troubleshooting step
    http://support.Microsoft.com/kb/948537>

    Windows Vista Service Pack 1 is not available for installation from Windows Update and is not offered by automatic updates:
    http://support.Microsoft.com/?kbid=948343>

    Learn how to install Windows Vista Service Pack 1 (SP1)
    http://windowshelp.Microsoft.com/Windows/en-us/help/133c8953-c9cd-4FA5-8883-03e91bb6f2021033.mspx>

    Windows Vista Service Pack 1 standalone installation) (KB936330)
    http://www.Microsoft.com/downloads/details.aspx?FamilyId=b0c7136d-5ebb-413b-89c9-cb3d06d12674&displaylang=en>

    Go to your retail store, they should have the disk recovery for you or you need to go to your manufacturer directly because the manufacturer is best qualified to support the software that the manufacturer has installed on the hardware, provide your serial number and order the CD on their part. I bet they arrange an expedition to the France and tax treatment for it, but should not be too much.

    Note: The manufacturer was required to provide a way to reinstall Windows. If it is not a set of disks with the computer, there will be a hidden restore partition (do not be confused with the system restore), you would use to return the computer to the State of the OOBE (Out of Box Experience).

Maybe you are looking for