SQL Help for System Analysis

Hi all,
Can we seek for help in SQL?
I have an system analysis which calculate the concurrent usage of a computer system.
I have add all data which is stored in .CSV file and then insert into a table named as Activity.
Can we select the data from activity and generate an Excel file which report the calculation on the concurrent usage of a computer system?

fionanycheng wrote:
Hi all,
Can we seek for help in SQL?
I have an system analysis which calculate the concurrent usage of a computer system.
I have add all data which is stored in .CSV file and then insert into a table named as Activity.
Can we select the data from activity and generate an Excel file which report the calculation on the concurrent usage of a computer system?
So, you have data in a .csv file
Then you load that data into a relational database.
Now you want to select that data and place it back into a file for Excel ......
Hmm..   Makes me wonder why you bothered with the database in the middle.
the database itself is more than capable of efficiently performing your calculations (assuming a reasonably rational table design).
Maybe you could provide a better description of the business problem to be solved, instead of a pre-conceived (and possibly ill-conceived) technical solution to that unspecified business problem.  The we could provide better advice.

Similar Messages

  • Complex SQL help for a

    I do not know if this is the right place for thius type of post. If it is not please advise where the right place is.
    I need help generating a report, hopefully with SQL in 8.1.7
    SQL Statement which produced the data below the query :
    SELECT CHANGE.change_number, CHANGE.route_date as DATE_TO_CCB, nodetable.description AS Approver_required, (TRIM(BOTH ',' FROM CHANGE.PRODUCT_LINES)) AS PRODUCT_LINES /*, PROPERTYTABLE.VALUE as PRODUCT_LINES */
    FROM CHANGE, signoff, workflow_process, nodetable /*, PROPERTYTABLE */
    WHERE ( (CHANGE.ID = signoff.change_id)
    AND (CHANGE.process_id = signoff.process_id)
    AND ((nodetable.id = signoff.user_assigned) or (nodetable.id=signoff.user_signed))
    AND (CHANGE.process_id = workflow_process.ID)
    AND (CHANGE.ID = workflow_process.change_id)
    AND (CHANGE.workflow_id = workflow_process.workflow_id)
    AND (SIGNOFF.SIGNOFF_STATUS=0 )/* in (0, 2, 3)) */ /* 0=request needs attention, 2=request approved, 3=request rejected */
    AND (SIGNOFF.REQUIRED=5 or SIGNOFF.REQUIRED=1) /* 1=Approver 5= Ad Hoc Approver */
    AND (CHANGE.IN_REVIEW=1)
    AND (CHANGE.RELEASE_DATE IS NULL)
    AND (CHANGE.CLASS != '4928')
    /* AND (PROPERTYTABLE.PROPERTYID IN (SELECT TRIM(BOTH ',' FROM CHANGE.PRODUCT_LINES) FROM CHANGE)) */
    order by change.route_date desc
    **** Results **********
    CHANGE_NUMBER|DATE_TO_CCB|APPROVER_REQUIRED|PRODUCT_LINES
    C02190|11/14/2008 3:34:02 PM|Anurag Upadhyay|270354,270362|
    C02190|11/14/2008 3:34:02 PM|Dennis McGuire|270354,270362|
    C02190|11/14/2008 3:34:02 PM|Hamid Khazaei|270354,270362|
    C02190|11/14/2008 3:34:02 PM|Mandy York|270354,270362|
    C02193|11/14/2008 3:05:18 PM|Hamid Khazaei|274279,266339,266340,266341|
    C02193|11/14/2008 3:05:18 PM|Rob Brogle|274279,266339,266340,266341|
    C02193|11/14/2008 3:05:18 PM|Xavier Otazo|274279,266339,266340,266341|
    C02193|11/14/2008 3:05:18 PM|san|274279,266339,266340,266341|
    C02194|11/14/2008 2:51:34 PM|Diana Young|271503|
    C02194|11/14/2008 2:51:34 PM|Carl Krentz|271503|
    C02194|11/14/2008 2:51:34 PM|Dennis Yen|271503|
    C02194|11/14/2008 2:51:34 PM|Gordon Ries|271503|
    C02194|11/14/2008 2:51:34 PM|Sunil Khatana|271503|
    M00532|11/13/2008 1:34:42 PM|Dennis Yen|270356,270354,270360,274279,266339,266340,266341,276780,260784|
    M00532|11/13/2008 1:34:42 PM|Jin Hong|270356,270354,270360,274279,266339,266340,266341,276780,260784|
    M00532|11/13/2008 1:34:42 PM|Sunil Khatana|270356,270354,270360,274279,266339,266340,266341,276780,260784|
    Each value in the numeric comma delimited string has a corresponding ID for the actual test string value in another table as shown below.
    PROPERTYID|VALUE
    260775|product 1
    260776|Product 2
    260777|Product x
    260778|Product y
    260779|Internal
    260780|ORCA
    260781|Tiger
    260782|Orange product
    260783|Restricted
    260784|Product zz
    266259|Product YYY
    266260|Hercules
    266261|Tangerine
    *****Desired output****
    CHANGE_NUMBER|DATE_TO_CCB|APPROVER_REQUIRED|PRODUCT_LINES
    C02190|Nov/14/2008 03:34:02 PM|Anurag Upadhyay, Dennis McGuire, Hamid Khazaei, Mandy York|Product Y,Product 1
    C02193|Nov/14/2008 03:05:18 PM|Hamid Khazaei, Rob Brogle, Xavier Otazo, san|Hercules,Apple,Product 3,Product zz
    C02194|Nov/14/2008 02:51:34 PM|Diana Young, Carl Krentz, Dennis Yen, Gordon Ries, Sunil Khatana|Product 2
    M00532|Nov/13/2008 01:34:42 PM|Dennis Yen, Jin Hong, Sunil Khatana|Product 1,Product 4,product yy,product YYY,ORCA,Tiger,Orange product,Restricted

    Hi,
    Here's how you can do it in Oracle 8.1.
    To get the individual sub-strings from product_lines, join your current result set to this "counter table"
    (   SELECT  ROWNUM  AS n
        FROM    all_objects
        WHERE   ROWNUM <= 10 -- upper bound on number of items
    )  cntrIf you don't know the worst case of how many items might be in product_lines, it's a little more complicated:
    (   SELECT  ROWNUM  AS n
        FROM    all_objects
        WHERE   ROWNUM <= 1 +
                SELECT  MAX ( LENGTH (product_lines)
                            - LENGTH (REPLACE (product_lines, ','))
                FROM    table_name
    )  cntrJoin this to the existing result set like this
    WHERE   ...
    AND     INSTR ( product_lines || ','    -- one extra comma added
                  , 1
                  , n
                  ) > 0When you do the join, you will have
    one copy of all the rows with one item in producgt_lines,
    two copies of all the rows with two items in producgt_lines,
    three copies of all the rows with three items in producgt_lines,
    and so on.
    When a row has been copied, each copy will have a different value of cntr.n.
    To extract the n-th substring from product_lines:
    SELECT  ...
            SUBSTR ( product_lines
                   , INSTR ( ',' || product_lines,   ',',   1,   n)
                   , ( INSTR (product_lines || ',',   ',',   1,   n)
                     - INSTR (',' || product_lines,   ',',   1,   n)
                   )  AS product_lines_itemWhen you have derived this column, you can join to the table with the translations
    WHERE  TO_NUMBER (product_lines_item) = propertyidTo combine these rows into one row with a comma-delimited list, GROUP BY all the columns you want to select except the property_value ('produc 1', 'tangerine', etv.), and SELECT:
    LTRIM ( MAX (CASE WHEN n =  1 THEN ',' || property_value END) ||
            MAX (CASE WHEN n =  2 THEN ',' || property_value END) ||
            MAX (CASE WHEN n = 10 THEN ',' || property_value END)
          )I don't know a good way to re-combine the rows in Oracle 8 without assuming some limit on the number of items. I assumed there would never be more than 10 in the example above. You can say 20 or 100, I suppose, if you want to. If you guess too high, everything will still work: the query will just be slower.
    This is a just one example of why packing several values into a single column is a bad idea.

  • SQL Help for Date Range display

    Gurus,
    I have a sql statement like
    select MIN(HIREDATE), MAX(HIREDATE) FROM EMP WHERE DEPTNO = 30My output looks like
    MIN(HIREDATE)     MAX(HIREDATE)
    12/30/1998        12/30/2001Based on the values of MIN(HIREDATE) , MAX(HIREDATE) values
    I need a SQL to generate the output like
    12/30/1998
    1/30/1999
    2/28/1999
    until Max(HIREDATE) value
    In Feb we dont have 30th day, In that case take the last day of the month.
    Thanks for great help
    C 007

    With 10g.
    Regards Salim.WITH t AS
         (SELECT min(hiredate) min_hiredate,
                 max(hiredate) max_hiredate
            FROM emp_test
            where deptno=30)
    SELECT min_hiredate dt
      FROM t
    model
    dimension by ( 1 rn)
    measures(min_hiredate,months_between(max_hiredate,min_hiredate) diff )
    (min_hiredate[for rn from 1 to diff[1] increment  1]=add_months( min_hiredate[1],cv(rn)-1))
    order by rn
    SQL> WITH t AS
      2       (SELECT min(hiredate) min_hiredate,
      3               max(hiredate) max_hiredate
      4          FROM emp_test
      5          where deptno=30)
      6  SELECT min_hiredate dt
      7    FROM t
      8  model
      9  dimension by ( 1 rn)
    10  measures(min_hiredate,months_between(max_hiredate,min_hiredate) diff )
    11  (min_hiredate[for rn from 1 to diff[1] increment  1]=add_months( min_hiredate[1],cv(rn)-1))
    12  order by rn
    13  /
    DT
    1998-12-30
    1999-01-30
    1999-02-28
    1999-03-30
    1999-04-30
    1999-05-30
    1999-06-30
    1999-07-30
    1999-08-30
    1999-09-30
    1999-10-30
    1999-11-30
    1999-12-30
    2000-01-30
    2000-02-29
    2000-03-30
    2000-04-30
    2000-05-30
    2000-06-30
    2000-07-30
    2000-08-30
    2000-09-30
    2000-10-30
    2000-11-30
    2000-12-30
    2001-01-30
    2001-02-28
    2001-03-30
    2001-04-30
    2001-05-30
    2001-06-30
    2001-07-30
    2001-08-30
    2001-09-30
    2001-10-30
    2001-11-30
    SQL> 

  • SQL Help for a computation

    Hi
    I am trying to create a Stock Market Technical Indicator named - Commodity Channel Index (CCI)
    Date  High_Price     Low_Price     Close_Price     True_Price     TPMA     MD
    02-Jan-07     2297     2238     2273     2269               
    03-Jan-07     2320     2273     2311     2301               
    04-Jan-07     2325     2275     2285     2295               
    05-Jan-07     2305     2256     2275     2279               
    08-Jan-07     2280     2193     2206     2226     2274     21     
    09-Jan-07     2235     2173     2190     2200     2260     38     
    10-Jan-07     2200     2153     2164     2173     2234     42     
    11-Jan-07     2215     2095     2183     2164     2208     35     
    12-Jan-07     2232     2200     2223     2218     2196     22     
    15-Jan-07     2248     2230     2243     2240     2199     24     
    16-Jan-07     2250     2216     2222     2229     2205     29     
    17-Jan-07     2245     2197     2205     2216     2214     20     
    Where Date, HighPrice,LowPrice,CLosePrice is the input from a table
    Below is the computation of other columns
    True_Price = (HighPrice+LowPrice+Closeprice)/3
    TPMA = 5 Days Average True_Price (last 5 values of True_Price includeing the current) [Note:First 4 values will be 0/Null ]
    MD = ABS(TPMA[5]-True_Price[5]) + ABS(TPMA[5]-True_Price[4]) + ABS(TPMA[5]-True_Price[3])+ ABS(TPMA[5]-True_Price[2])+ ABS(TPMA[5]-True_Price[1]) [Note:First 4 values will be 0/Null ]
    Please note this 5 days average is a parameter so it can be 5 days , 10 day, 20 day etc so the calculation will based on this parameter+
    For Example if parameter is 10 days then
    TPMA = 10 Days Average of True_Price(last 10 values of True_Price includeing the current) [Note:First 9 values will be 0/Null ]
    MD = ABS(TPMA[10]-True_Price[10]) ABS(TPMA[10]-True_Price[9]) ABS(TPMA[10]-True_Price[8]) ABS(TPMA[10]-True_Price[7]) ABS(TPMA[10]-True_Price[6]) ABS(TPMA[10]-True_Price[5]) ABS(TPMA[10]-True_Price[4]) + ABS(TPMA[10]-True_Price[3])+ ABS(TPMA[10]-True_Price[2])+ ABS(TPMA[10]-True_Price[1]) [Note:First 9 values will be 0/Null ]
    I am really struck with computation of column MD and not sure how to make it generic to work for any value
    Thanks in advance for your help
    Regards
    Rakesh

    Hi
    I am trying to create a Stock Market Technical Indicator named - Commodity Channel Index (CCI)
    Date  High_Price     Low_Price     Close_Price     True_Price     TPMA     MD
    02-Jan-07     2297     2238     2273     2269               
    03-Jan-07     2320     2273     2311     2301               
    04-Jan-07     2325     2275     2285     2295               
    05-Jan-07     2305     2256     2275     2279               
    08-Jan-07     2280     2193     2206     2226     2274     21     
    09-Jan-07     2235     2173     2190     2200     2260     38     
    10-Jan-07     2200     2153     2164     2173     2234     42     
    11-Jan-07     2215     2095     2183     2164     2208     35     
    12-Jan-07     2232     2200     2223     2218     2196     22     
    15-Jan-07     2248     2230     2243     2240     2199     24     
    16-Jan-07     2250     2216     2222     2229     2205     29     
    17-Jan-07     2245     2197     2205     2216     2214     20     
    Where Date, HighPrice,LowPrice,CLosePrice is the input from a table
    Below is the computation of other columns
    True_Price = (HighPrice+LowPrice+Closeprice)/3
    TPMA = 5 Days Average True_Price (last 5 values of True_Price includeing the current) [Note:First 4 values will be 0/Null ]
    MD = ABS(TPMA[5]-True_Price[5]) + ABS(TPMA[5]-True_Price[4]) + ABS(TPMA[5]-True_Price[3])+ ABS(TPMA[5]-True_Price[2])+ ABS(TPMA[5]-True_Price[1]) [Note:First 4 values will be 0/Null ]
    Please note this 5 days average is a parameter so it can be 5 days , 10 day, 20 day etc so the calculation will based on this parameter+
    For Example if parameter is 10 days then
    TPMA = 10 Days Average of True_Price(last 10 values of True_Price includeing the current) [Note:First 9 values will be 0/Null ]
    MD = ABS(TPMA[10]-True_Price[10]) ABS(TPMA[10]-True_Price[9]) ABS(TPMA[10]-True_Price[8]) ABS(TPMA[10]-True_Price[7]) ABS(TPMA[10]-True_Price[6]) ABS(TPMA[10]-True_Price[5]) ABS(TPMA[10]-True_Price[4]) + ABS(TPMA[10]-True_Price[3])+ ABS(TPMA[10]-True_Price[2])+ ABS(TPMA[10]-True_Price[1]) [Note:First 9 values will be 0/Null ]
    I am really struck with computation of column MD and not sure how to make it generic to work for any value
    Thanks in advance for your help
    Regards
    Rakesh

  • Sql help for columns to rows

    Hi all,
    Here is my requirement for reporting purpose…….
    Can you please help me? See below example.
    with t as (select 1 id, 'missing' col1,'expired' col2,'duplicate' col3,'other' col4 from dual union all
    select 2 id, 'missing' col1,'expired' col2,'duplicate' col3,'other' col4 from dual
    select * from t
    id     col1          col2          col3          col4
    1     missing     expired     duplicate     other
    2     missing     expired     duplicate     other
    Required out is
    id new_col
    1 missing
    1 expired
    1 duplicate
    1 other
    2 missing
    2 expired
    2 duplicate
    2 other
    Thanks in advance,

    Isn't fun to play around and see what happens?
    WITH t AS
      (SELECT 1 id,
        'missing' col1,
        'expired' col2,
        'duplicate' col3,
        'other' col4
      FROM dual
      UNION ALL
      SELECT 2 id,
        'missing' col1,
        'expired' col2,
        'duplicate' col3,
        'other' col4
      FROM dual
    SELECT id,
      new_col
    FROM t unpivot include nulls (new_col FOR col IN (col1, col2, col3, col4));gives
    ID                     NEW_COL  
    1                      missing  
    1                      expired  
    1                      duplicate
    1                      other    
    2                      missing  
    2                      expired  
    2                      duplicate
    2                      other    
    8 rows selectedNow this only works in 11g, so it's a great reason to get there.
    -Andy

  • Need help for system audio output over airport

    How can I set the system audio out over airport for all programs, not just iTunes
    Thank you for help

    You can do this using the low cost software add in called "Airfoil" - see:
    http://www.rogueamoeba.com/airfoil/mac/

  • HELP HELP!!! Needed help for system recovery

    I have a satellite A505-S6035
    I made the restoration disk and made a system restoration using that DVD's one year back to make a new partition and everything went fine.but today my system crashed and I tried to restore from HDD ,by pressing zero on the start up and it wont.I work tried the DVD and it boots...but it staying long time saying copying files......I think some problem on the DVD as I felt some noise from the CD drive that cannot read properly.I removed this HDD and connedted externaly with another PC and realized that c:\\ already formated and some files has been copied there. D:\\ have no problem and all my datas are there.i found another partiton too for the recovery @ 2GB but i coudn recover from
    what i should do in this situation ..pls help

    Just a few thoughts: Did you cut all power to your computer [include battery and ac] prior to trying to restore, and try toggling zero key when turning on to restore. If this doesn't get computer and/or HDD restore to operate, is other machine you used to read HDD compatable; could you restore HDD on other machine if needed, then try in this one? 

  • SQL Help for FMS needed

    Hi
    Can somebody please tell me what's wrong with this:
    declare @result as varchar(30)
    if $[$OWTR.Filler] = 'NFE-1'
    begin
      set @result = (select t1.wareHouse from WOR1 t1 inner join OWOR t2 on t1.DocEntry=t2.DocEntry
    where t2.DocNum=$[OWTR.U_SIA_ProdAusg] and t1.VisOrder=$[$23.0.1]-1 AND t1.IssueType='M')
    end
    else
    set @result = 'NFE-1'
    select @result
    Thanks
    Franz

    That was not it.
    I found it ... sometimes it seems to help to ask for help ...
    set @temp = $[$OWTR.Filler]
    changed to
    set @temp = $[OWTR.Filler]
    Thanks anyway
    Franz

  • Need Help for System Stability.

    Ok, I've been trying to get the most out of my setup.
    This is my 3DMark2K1 score, somehow, lol I managed to get it o/c'd stable like at 3.0ghz ..  http://service.futuremark.com/compare?2k1=8193585
    But the usual score is http://service.futuremark.com/compare?2k1=8191643
    Now my setup is...
    2.8ghz Pentium 4 Prescott 1MB L2 Cache 800mhz FSB With Artic Silver 5 Compound and Artic Cooling HSF combo (aluminum heatsink).
    Corsair Twinx Dual Channel PC3700 2x256MB @ 2.5-4-3-7-8... DDR 2.7v atm...
    MSI Neo2-P 865PE
    Radeon 9500 softmoded to 9700 at 295.53 / 295.53 ... I can benchmark at 297/297 but after I've  ran it for longer artifacts begin appearing... An I have to reboot. Currently I am using the newest bios drivers as well.
    In the BIOS I have Turbo(mat) on an no change to the FSB or CPU vcore, but it says that my vcore is running to high for the specific processor   .. Which I can't see how since I have not adjusted it.
    MY PSU I am using is a pretty kickass one    http://www.newegg.com/app/ViewProductDesc.asp?description=17-171-001&depa=0 an with the indicator up front it shows I am using in between 170w to 200 w depending if I am benching or not...idle its like 170w running a 3D app its 200w or close to it.
    If I try to run my RAM at 3-3-3-8 at usual 1:1 frequency.  It won't boot, or when it loads into windows, it will crash.
    If I try running it at 433mhz it won't won't post either... unless i turn the turbo(mat) to normal. But the performance gain is about the same as if I had my timing at my set speeds at turbo(mat).
    Really, I just need to get some tips. Do I have to adjust my voltages better or what? I really dunno what to do...But nothing is running hot... CPU (which is a prescott...) runs at 44C' - 45C idle and 49-51C full load. system temps are 40-44C depending on ambient temps....
    So...any advice would be welcome.

    Setting your ram at Auto should run it at 400, which is a 1:1 ratio with the cpu. This is the optimum performance for stock settings. As you increase the FSB to the cpu, the memory clock increases at the same rate.
    PAT (MAT) turns off at over 218 on the FSB. At 218 FSB your ram will run at 400*218/200 = 436. PC3700 is rated for 462, so there is a bit more room for overclocking. There is a trick (feature?) that if you set the ram speed at 400 instead of Auto, PAT (MAT) turns off and you can usually run at a higher speed with a higher performance mode setting. You have to play with performance mode and FSB settings to find what works.
    For example, with my ram I can use ultra turbo if I set the FSB to 225 or higher. At an FSB of 200 I am limited to Fast.
    If you want extreme overclocking, you will have to set your ram speed to 333, which actually runs at 320, which is a 5:4 ratio. Then when the FSB is at 250, the ram will run at 400.
    I would recommend you read some of the stickies in the overclockers forum and then post questions there.

  • Some SQL Help for a Complete Beginner

    ...........

    Use ROLLUP then
    SQL> select id,
      2         case when grouping(id)=1 and grouping(pro_name)=1 then 'Total' else pro_name end pro_name
      3         sum(quantity) quantity
      4    from product
      5   group by rollup(id, pro_name)
      6  having (grouping(id)=0 and grouping(pro_name)=0)
      7      or (grouping(id)=1 and grouping(pro_name)=1)
      8  /
    ID    PRO_NAME               QUANTITY
    11011 Socket Type 3                20
    11110 Wrench Type 2                44
    11111 Bolt Type 1                  40
    22022 Hammer                       30
    22220 Wrench Type 3                44
    22222 Bolt Type 2                  40
    33330 Wrench Type 4                44
    33333 Bolt Type 3                  40
    44440 Nut Type 1                   80
    44444 Bolt Type 4                  40
    55550 Nut Type 2                   80
    55555 Nail Type 1                 400
    66660 Nut Type 3                   80
    66666 Nail Type 2                 400
    77770 Nut Type 4                   80
    77777 Nail Type 3                 400
    88880 Socket Type 1                20
    88888 Nail Type 4                 400
    99990 Socket Type 2                20
    99999 Wrench Type 1                44
          Total                      2346
    21 rows selected.Your price field is CHAR data type. You cant use it with quantity field which is a NUMBER data type.
    The basic structure of your table is wrong you need to modify it.
    Edited by: Karthick_Arp on May 8, 2009 11:47 PM

  • SQL Alias for Analysis Server for SharePoint 2013

    Hi 
    I created a SQL Alias for my Analysis Server but somehow, It is not working.
    I am frequently using SQL Alias for my SQL database servers within the SharePoint 2013 and it is working correctly.
    Could you please guide me for this.
    Regards,
    Yogendra
    My name is yogendra

    A Sql Aliase works only for relational database engines, but not for multidimensional engines / SSAS
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • Seeing the detailed sql  with db table names for an analysis in OBIEE 11g?

    Hello All,
    I am trying to see the detailed sql for an analysis to see which tables my analysis is hitting back in the database. Currently all i see is the subject area name with bunch of s_0, S_1,S_2.... but i want to see the actual table names which the Analysis is pulling the data from, I am new to OBIEE. Any help or advise with the steps in order to accomplish my goal is greatly appreciated.
    Thanks,
    Ravi.
    Edited by: user1146711 on Aug 23, 2011 3:24 PM
    Edited by: user1146711 on Aug 23, 2011 3:30 PM

    Hi ravi,
    You can check in the presentation services by going to Administration/manage session/view log for the specific report that you are running.
    You can even check the SQL in log file NqQuery.log in your installation folder C:OracleBI\server\log\NqQuery.log
    Check this Courtesy by gerard http://gerardnico.com/wiki/dat/obiee/manage_session_log
    hope answered.
    Cheers,
    KK

  • Please help me resolve the Lync server 2013 deployment error: "An error occurred while applying SQL script for the feature BackendStore."

    I am getting an error in "Step 2 - Setup or Remove Lync Server Components" of "Install or Update Lync Server System" step.
    "An error occured while applying SQL script for the feature BackendStore. For details, see the log file...."
    Additionally, all previous steps such as: Prepare Active Directory, Prepare first Standard Edition server, Install Administrative Tools, Create and publish topology are done without any errors. The user that I used to setup the Lync server is member of:
    Administrators
    CSAdministrator
    Domain Admins
    Domain Users
    Enterprise Admins
    Group Policy Creator Owners
    RTCComponentUniversalServices
    RTCHSUniversalServices
    RTCUniversalConfigReplicator
    RTCUniversalServerAdmins
    Schema Admins
    I have tried to re-install all the things and started to setup a new one many times but the same error still occurred. Please see the log below and give me any ideas/solutions to tackle this problem.
    ****Creating DbSetupInstance for 'Microsoft.Rtc.Common.Data.BlobStore'****
    Initializing DbSetupBase
    Parsing parameters...
    Found Parameter: SqlServer Value lync.lctbu.com\rtc.
    Found Parameter: SqlFilePath Value C:\Program Files\Common Files\Microsoft Lync Server 2013\DbSetup.
    Found Parameter: Publisheracct Value LCTBU\RTCHSUniversalServices;RTC Server Local Group;RTC Local Administrators;LCTBU\RTCUniversalServerAdmins.
    Found Parameter: Replicatoracct Value LCTBU\RTCHSUniversalServices;RTC Server Local Group.
    Found Parameter: Consumeracct Value LCTBU\RTCHSUniversalServices;RTC Server Local Group;RTC Local Read-only Administrators;LCTBU\RTCUniversalReadOnlyAdmins.
    Found Parameter: DbPath Value D:\CsData\BackendStore\rtc\DbPath.
    Found Parameter: LogPath Value D:\CsData\BackendStore\rtc\LogPath.
    Found Parameter: Role Value master.
    Trying to connect to Sql Server lync.lctbu.com\rtc. using windows authentication...
    Sql version: Major: 11, Minor: 0, Build 2100.
    Sql version is acceptable.
    Validating parameters...
    DbName rtcxds validated.
    SqlFilePath C:\Program Files\Common Files\Microsoft Lync Server 2013\DbSetup validated.
    DbFileBase rtcxds validated.
    DbPath D:\CsData\BackendStore\rtc\DbPath validated.
    Effective database Path: \\lync.lctbu.com\D$\CsData\BackendStore\rtc\DbPath.
    LogPath D:\CsData\BackendStore\rtc\LogPath validated.
    Effective Log Path: \\lync.lctbu.com\D$\CsData\BackendStore\rtc\LogPath.
    Checking state for database rtcxds.
    Checking state for database rtcxds.
    State of database rtcxds is detached.
    Attaching database rtcxds from Data Path \\lync.lctbu.com\D$\CsData\BackendStore\rtc\DbPath, Log Path \\lync.lctbu.com\D$\CsData\BackendStore\rtc\LogPath.
    The operation failed because of missing file '\\lync.lctbu.com\D$\CsData\BackendStore\rtc\DbPath\rtcxds.mdf'
    Attaching database failed because one of the files not found. The database will be created.
    State of database rtcxds is DbState_DoesNotExist.
    Creating database rtcxds from scratch. Data File Path = D:\CsData\BackendStore\rtc\DbPath, Log File Path= D:\CsData\BackendStore\rtc\LogPath.
    Clean installing database rtcxds.
    Timeout expired.  The timeout period elapsed prior to completion of the operation or the server is not responding.
    ****Creating DbSetupInstance for 'Microsoft.Rtc.Common.Data.RtcSharedDatabase'****
    Initializing DbSetupBase
    Parsing parameters...
    Found Parameter: SqlServer Value lync.lctbu.com\rtc.
    Found Parameter: SqlFilePath Value C:\Program Files\Common Files\Microsoft Lync Server 2013\DbSetup.
    Found Parameter: Serveracct Value LCTBU\RTCHSUniversalServices;RTC Server Local Group.
    Found Parameter: DbPath Value D:\CsData\BackendStore\rtc\DbPath.
    Found Parameter: LogPath Value D:\CsData\BackendStore\rtc\LogPath.
    Trying to connect to Sql Server lync.lctbu.com\rtc. using windows authentication...
    Sql version: Major: 11, Minor: 0, Build 2100.
    Sql version is acceptable.
    Validating parameters...
    DbName rtcshared validated.
    SqlFilePath C:\Program Files\Common Files\Microsoft Lync Server 2013\DbSetup validated.
    DbFileBase rtcshared validated.
    DbPath D:\CsData\BackendStore\rtc\DbPath validated.
    Effective database Path: \\lync.lctbu.com\D$\CsData\BackendStore\rtc\DbPath.
    LogPath D:\CsData\BackendStore\rtc\LogPath validated.
    Effective Log Path: \\lync.lctbu.com\D$\CsData\BackendStore\rtc\LogPath.
    Checking state for database rtcshared.
    Reading database version for database rtcshared.
    Database version for database rtcshared - Schema Version5, Sproc Version 0, Update Version 1.
    Thanks and Regards,
    Thanh Le

    Thanks Lạc
    Phạm 2
    I Had similar issue i end up uninstalling and reinstallting but same issue, then i change the drive but same issue. It was I/O issue. After adjusting my I/O it fix our issue and installation went on without any issue. 
    If any one using KVM here is detail article 
    We just  give this option cache=‘writeback
    using this article http://www.ducea.com/2011/07/06/howto-improve-io-performance-for-kvm-guests/ and http://itscblog.tamu.edu/improve-disk-io-performance-in-kvm/ this fix my issue thanks 

  • Cross-systems analysis and max. rules for a risk

    Hi all,
    Customer environnement: GRC AC RAR 5.2 linked to 3 R3 4.6C environments (FB0, FB1 and FB2) with different purposes. Users and roles can exist in the 3 systems so we need to run cross systems analysis.
    It turns out that the cross-systems analysis works well only if you declares the functions on only 2 environments (FB0 and FB2 or FB0 and FB1).
    If we declare the functions on 3 environments (FB0, FB1 and FB2) one reaches the maximum number of rules for a risk, namely 46 655.
    This limit is it revised upwards in version 5.3 (if yes, how?)
    Or there happens a workaround solution to run cross system analysis on multiple physical systems (the customer environment target is 6!) ?
    Regards

    The limit is based on the number of character combinations are available for a risk, so if the number of characters has been increased thenteh number of rules available won't have been increased.
    In AC 5.3 the number of characters for a risk ID is 4 which is the sames as AC 5.2 therefore I doubt trhat the limit has been lifted of the code changed to accomodate mor rules per risk.
    The only way around the issue is to create smaller risks instead of looking in systems 1, 2 & 3 look in 1 & 2, and 2 & 3 and 1 & 3.  Not ideal but at least you will get some results.
    Sounds likje an enhancement request needs to be raised to me.

  • Online Help for Oracle HRMS Self Service System

    I am looking into developing context-sensitive online help for an Oracle HRMS Self Service application. There is currently no online help for the application; all help is provided in printed and online docs, so users are having trouble navigating to the info they need. Help is needed! My initial questions are:
    Would I need to create OHJ or OHW?
    Could I use RoboHelp to develop the content?
    Is there a reference document you can point me to?
    Thanks
    Belinda

    Hi Belinda,
    You would create Oracle Help, and then deploy it using OHJ or OHW.
    The format of the help is the same. There is nothing specific that needs to be done for one or the other. If your system i s a Web application, you would use OHW and otherwise, you would use OHJ.
    You can read more about Oracle Help on OTN at http://www.oracle.com/technology/tech/java/help/index.html.
    (Read the FAQ for more information about the choice between OHJ and OHW.)
    Personally, I would not recommend RoboHelp to create Oracle Help. RoboHelp has a lot of nice features, but the Oracle Help output feature is fairly buggy, especially if you are creating a large helpset, or a helpset that has subhelpsets.
    At Oracle, a lot of help development is done using DreamWeaver and an in-house build tool, called the Oracle Help Build Tool. This is available for free. Send me a mail ([email protected]) if you want a copy.
    Regards,
    Pete

Maybe you are looking for

  • When i click on itunes icon it won't open. it says it has quit unexpectedly?

    When I click on itunes it says that its quit unexpectedly! It won't open it!!

  • How can I use the iCloud backup files?

    Recently I lost my passcode and I had to reset my iPhone. Some of my data is on iCloud but I don't know how to use my camera roll again in my Photos. All I want is to know how can I store my pictures and videos from iCloud to my Photos.

  • HP PhotoSmart Essential error on startup

    Hello, Up until the other day I was not having any issues when I would start my computer.  A few days ago when I started the computer I got a pop-up box titled "HPPhotosmartEssential" and it stated "Please wait while Windows configures HPPhotosmart E

  • Photoshop CC shuts down when trying to print.

    Control print causes Photoshop CC to stop working.  Event viewer calls it a Stack error with CSXS as the code.  Went to PS CC and downloaded and installed recommended patch.  No difference.  Just started three days ago, restored the computer to a day

  • Deleted iphoto off my phone

    Somehow iPhoto has been deleted off my iPhone 4S. I can not figure out how to get the iPhoto app back on to my phone.