The value of Hours in specific groups of aggregate

First of all, I have some documents after you have used a SQL like this:
YEARS MONTHS SUMMONTH SUMQUARTER SUMYEAR
----- ------ -------- ---------- -------
 2009 Jan      153904     459909 1692462 
 2009 Feb      144643     459909 1692462 
 2009 Mar      161362     459909 1692462 
 2009 Apr      133407     423148 1692462 
 2009 May      148397     423148 1692462 
 2009 Jun      141344     423148 1692462 
 2009 Jul      136838     428743 1692462 
 2009 Aug      139550     428743 1692462 
 2009 Sep      152355     428743 1692462 
 2009 Oct      122030     380662 1692462 
 2009 Nov      121963     380662 1692462 
 2009 Dec      136669     380662 1692462 
 2010 Jan      139709     430608 1747257 
 2010 Feb      143226     430608 1747257 
 2010 Mar      147673     430608 1747257 
 2010 Apr      155311     441330 1747257 
 2010 May      143274     441330 1747257 
 2010 Jun      142745     441330 1747257 
 2010 Jul      137887     422751 1747257 
 2010 Aug      130827     422751 1747257 
 2010 Sep      154037     422751 1747257 
 2010 Oct      138790     452568 1747257 
 2010 Nov      162764     452568 1747257 
 2010 Dec      151014     452568 1747257 
Just explain briefly,
The column SUMMONTH is a dynamic that is the total value of a month
The column SUMQUARTER is a dynamic column means that the total value in a quarter of the year (January-March, April-June, July, sept, Oct - Dec)
The column SUMYEAR is a dynamic that is the total value of the year

In addition, the data (value) are calculated by each hour per day and combine them to a certain amount.
You can assume that the structure of the table have a field call 'HOURS', which has preserved a number (for example 00,01,02, 03,..., 21, 22, 23) and a 'VALUE' field that stored the data respectively.

This can be easy understand later with my SQL provided.


Now, the essential problem is "HOW to calculate a specific group of hours"...?

There are groups of serval of hours:

Group1. 08-20 (08:00-20:00)
Group2. 20 / 08 (20:00-08:00)
Group 3. 20-24 (20:00 to 12: 00)
Group 4. 24 / 08 (12:00 to 08:00)

You can see a little duplicated (Group2 = Group 3 and group 4) but it's ok...

Here's the SQL code that I use now:
select years,
        months,   
         summonth,
         sum(summonth) over(partition by years || to_char(ym, 'Q') order by years || to_char(ym, 'Q')) sumquarter,
         sumyear       
from(
select years,months,summonth,sumyear,to_date(years || months, 'YYYYMon', 'NLS_DATE_LANGUAGE=American') ym
from(
select years, months, days, hours, mins, sumHour, SUM (sumHour) OVER (PARTITION BY years,months,days) sumDay, SUM (sumHour) OVER (PARTITION BY years,months) sumMonth, SUM (sumHour) OVER (PARTITION BY years) sumyear
from (SELECT x.years, x.months, x.days, x.hours, x.mins, sum(x.value) as sumHour
FROM xmltest, 
XMLTABLE ('$d/cdata/name' passing xmldoc as "d" 
   COLUMNS 
  years integer path 'year',
  months varchar(3) path 'month',
  days varchar(2) path 'day',
  hours varchar(2) path 'hour',
  mins varchar(2) path 'minute',
  value float path 'value'
  ) as X 
  group by x.years, x.months, x.days, x.hours, x.mins
  order by x.years, x.months, x.days
  )
  )
  )
  group by years,months,summonth,sumyear
  order by ym
Using a 'Q' parameter so I can force the month of a quarter...
but I don't really know how about the value of a specific group of hours group...

Output final format may be something like this:
YEARS MONTHS SUMMONTH SUMQUARTER SUMYEAR   8AM_20PM  20PM_8AM  20PM_00AM  00AM_8AM
----- ------ -------- ---------- ------- ---------- ---------- ---------- ----------
 2009 Jan      153904     459909 1692462      15000       3904       3000        904
 2009 Feb      144643     459909 1692462 
 2009 Mar      161362     459909 1692462 
 2009 Apr      133407     423148 1692462 
 2009 May      148397     423148 1692462 
 2009 Jun      141344     423148 1692462 
 2009 Jul      136838     428743 1692462 
 2009 Aug      139550     428743 1692462 
 2009 Sep      152355     428743 1692462 
 2009 Oct      122030     380662 1692462 
 2009 Nov      121963     380662 1692462 
 2009 Dec      136669     380662 1692462 
 2010 Jan      139709     430608 1747257 
 2010 Feb      143226     430608 1747257 
 2010 Mar      147673     430608 1747257 
 2010 Apr      155311     441330 1747257 
 2010 May      143274     441330 1747257 
 2010 Jun      142745     441330 1747257 
 2010 Jul      137887     422751 1747257 
 2010 Aug      130827     422751 1747257 
 2010 Sep      154037     422751 1747257 
 2010 Oct      138790     452568 1747257 
 2010 Nov      162764     452568 1747257 
 2010 Dec      151014     452568 1747257 
Thanks that helps everyone!

Hello.

Here is a way.

WITH data AS
(
     SELECT '01' hour, 10 val FROM DUAL UNION
     SELECT '18' hour, 12 val FROM DUAL UNION
     SELECT '01' hour, 14 val FROM DUAL UNION
     SELECT '17' hour, 15 val FROM DUAL UNION
     SELECT '03' hour, 17 val FROM DUAL UNION
     SELECT '20' hour, 16 val FROM DUAL UNION
     SELECT '03' hour, 14 val FROM DUAL UNION
     SELECT '21' hour, 15 val FROM DUAL UNION
     SELECT '04' hour, 13 val FROM DUAL UNION
     SELECT '23' hour, 12 val FROM DUAL UNION
     SELECT '20' hour, 13 val FROM DUAL UNION
     SELECT '06' hour, 16 val FROM DUAL UNION
     SELECT '24' hour, 17 val FROM DUAL UNION
     SELECT '07' hour, 18 val FROM DUAL UNION
     SELECT '08' hour, 14 val FROM DUAL UNION
     SELECT '09' hour, 15 val FROM DUAL UNION
     SELECT '21' hour, 16 val FROM DUAL UNION
     SELECT '10' hour, 16 val FROM DUAL UNION
     SELECT '21' hour, 17 val FROM DUAL
),
data_2 AS
(
     SELECT
          SUM(CASE WHEN TO_NUMBER(hour) BETWEEN 8 AND 20 THEN
               val
          ELSE 0
          END) r8_20,
          SUM(CASE WHEN TO_NUMBER(hour) BETWEEN 20 AND 24 OR TO_NUMBER(hour) BETWEEN 0 AND 8 THEN
               val
          ELSE 0
          END) r20_8,
          SUM(CASE WHEN TO_NUMBER(hour) BETWEEN 20 AND 24 THEN
               val
          ELSE 0
          END) r20_24,
          SUM(CASE WHEN TO_NUMBER(hour) BETWEEN 0 AND 8 THEN
               val
          ELSE 0
          END) r0_8
     FROM data
)
SELECT * FROM data_2;

     R8_20     R20_8       R20_24       R0_8
---------- ---------- ---------- ----------
       101       222          106     116

I hope this helps.

Kind regards.

Tags: Database

Similar Questions

  • How to check the roles agreed on a specific group?

    Hello

    How to check the roles granted to a specific group?

    If a user belongs to this group in particular, will have the same roles granted so much that the Group?

    Thank you.

    SQL> select grantee
      2  from dba_role_privs
      3  where granted_role = 'DBA';
    
    GRANTEE
    ---------------------------------
    SYS
    SYSTEM
    
  • Customization of the emailing of the alerts based on a specific group of servers?

    Hello

    I'm wondering how to set up electronic mail based on a specific service of Foglight? For example, I know that I can put "SYSADMIN" to an e-mail address and it becomes the email address golbal all alerts are sent to.

    What I want to do, is keep global electronic mail as address, but take a few exclusions and have another set of servers to a diffferent e-mail address e-mail.

    In this example I am using services that I created my groupings. For example, I have a FSM Service called "DHCP servers" I want alll alerts for servers in this group to go to another email address that defined globally in the sysadmin variable e-mail address.

    Here's what I've tried, but alerts are not sent to "[email protected]".

    How to achieve this?

    Thank you

    Tony

    Hello Tony

    This can be done with a service (as far as I know), but my requirements were much simpler.  I had three machines CRM and CRM team wanted to know when CRM Windows services had problems.

    At the end of the day, I used two - general rule of 'The host Services' and a specific rule of 'Hosting CRM Services' rules.

    My "Host Services CRM" rule has the following in the rule definition:

    HostService where monitoredHost.name = "crm1.mycompany.com" or monitoredHost.name = "crmapp01.mycompany.com" or monitoredHost.name = "crmapp02.mycompany.com".

    There is a variable in the Conditions tab, alarms & Actions for registry ("NewAddress").  In the registry, "NewAddress" is essentially "SYSADMIN" from the e-mail address for the CRM team.

    To avoid duplicate emails, 'Host Services' rule has the following in the definition of the rule to exclude CRM systems:

    HostService where monitoredHost.name! = "crm1.mycompany.com" and monitoredHost.name! = "crmapp01.mycompany.com" and monitoredHost.name! = "crmapp02.mycompany.com".

    I'm sure (but does not ) that you can change monitoredHost.name to something like service. Name it extended to a service.  Obviously, it would be preferable to application domain service so that you don't have that one place to update unlike me, but my customizations refer only to three systems with two rules, so it's easy to keep up-to-date.

    I hope this helps for you an overview on how to attempt it.

    Brian

  • Refuse the AAA Clients to a specific group of users GBA v4.1

    With the help of 4.1 is there a method 'simple' simply deny a user group the ability to connect to specific clients of AAA? Customer has a group of phones they want to allow them to Telnet and check in all routers of the voice, but not other routers, they have sets of orders and that the installation but I wanted to see if a way to push this group simply to voice only routers?

    Thanks in advance,

    Dave

    You can configure using NAR GBA.

    http://www.Cisco.com/en/us/products/sw/secursw/ps2086/products_tech_note09186a0080858d3c.shtml

    Kind regards

    ~ JG

    Note the useful messages

  • How can I check if a user belongs to a certain group of field and see what are the permissions that the user has on a specific group "administrator, user and guest"?

    I can't check in a group of area if a user is "administrator, user and guest.

    I'm using labview 2012 in the windows domain.

    I think that there are tools. NET to resolve this, but could not yet.

    Attached a file that checks if a user belongs to a group in the area, but without the information of privileges.

    In the past, I used the command line.  Use ' Net User % username / Domain % domain % ' to get information about the user.  Actually, I don't have the right to see the other commands, so I don't know how it works now.  .NET looks more elegant, but I never used it for that.

  • Assign the radius server to specific groups of VPN 3000

    Last week, I assigned a test Cisco ACS server to be used for authentication and device of accounting for a specific group on a Cisco VPN concentrator 3060. When I looked at ACS, it appears that not only the Group was to go there but others through this way and using the default values on the Cisco Secure ACS. Is it possible that I can make sure only the traffic assigned to this specific group of VPN using the ACS server defined?

    Thank you

    Hello

    Not sure about your implementation. But you must configure the group for this specific ad group map can only authentication.

    In the external group map db, map

    Group ACS VPN---> with<---- ad="" vpn="">

    Any other combination should point to any access group.

    Kind regards

    ~ JG

    Note the useful messages

  • How to group the values according to the weeks of the year?

    Hello

    I have a table with dates and values (I'm simplifying the need for this question)

    I want to group the values (and adding the) according to the 52 weeks of the year. I mean week of consolidation for the week.
    Here the date of each weeks generated during a year, it gives every Monday of each week of the year:
    Select trunc (trunc (sysdate, 'year'), 'iw') +(rownum*7)-7 n of object where rownum < = 53

    What I want to do is to summarize the values in my table and group together them in every week, in that respect. The date of these weeks are generated by the above query.

    For example all values fall into the 1st week of the year will be grouped into this date, all values fall in the 2nd wek will be grouped in this date and so on. If no value is found for a week, then a value of 0 is generated in iorder have a 52 weeks-lines. It's basically a kind of select with "date between... and...". "and group values and that affect the number of the wee, they are relevant.

    Examples of Monday, June 30, 2008, 07/07/2008, 07/14/2008

    Example of values and dates in my table:

    Date value
    30/06/08 9
    07/01/08 9
    07/02/08 9
    07/03/08 9
    07/03/08 9
    07/04/08 6
    07/04/08 6
    07/04/08 9
    07/07/08 9
    07/08/08 9
    29/07/08 9
    29/07/08 6
    30/07/08 9
    07/31/08 9
    07/31/08 9
    07/31/08 9
    08/01/08 9
    08/04/08 5.5
    08/04/08 9
    08/07/08 9
    08/07/08 9
    08/08/08 9
    14/08/08 9
    14/08/08 9
    18/08/08 9
    22/08/08 9
    22/08/08 9
    25/08/08 9
    25/08/08 9
    26/08/08 9
    29/08/08 9
    29/08/08 9
    09/01/08 9
    09/01/08 9
    09/04/08 9
    09/04/08 9
    09/05/08 9
    09/05/08 9
    09/05/08 9
    09/05/08 9
    17/09/08 9

    Result should be something like this:

    Number of the week Date value
    47/1 12/31/2008
    94/2 07/12/2008
    2008-01-14 3, 23
    and so on...
    .....
    73/52 12/22/2008
    60/53 29/12/2008

    I hope I am clear. Thank you for your kind replies.

    Something like that, maybe:

    select trunc(trunc(sysdate,'year'),'iw') +((level-1)*7)  n
    from dual connect by level<=53
    

    (I changed it to sysdate so that the next years will take care of them!)

  • Defining the new path for the data files for restoring using the VALUE of NEWNAME FOR DATABASE

    Version: 11.2.0.3 Linux

    Today, I had to do a restore RMAN to a new server and I came across the post following RTO on the VALUE of NEWNAME FOR DATABASE

    ALTER database open resetlogs upgraded;         error to throw

    So, I thought to use it to indicate the new location of the data files to restore.

    That's what I did
    ===================

    Restore the control file and catalog items to backup using the command of CATALOGUE START WITH. Then I started the restoration
    $ rman target / cmdfile=restore.txt
    
    Recovery Manager: Release 11.2.0.3.0 - Production on Thu Jul 26 04:40:41 2012
    
    Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.
    
    connected to target database: SPIKEY (DBID=2576163333, not open)
    
    RMAN> run
    2>  {
    3>  SET NEWNAME FOR DATABASE TO '/fnup/hwrc/oradata/spikey';
    4>  restore database  ;
    5>  }
    6>
    7>
    8>
    executing command: SET NEWNAME
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of set command at 07/26/2012 04:40:43
    RMAN-06970: NEWNAME '/fnup/hwrc/oradata/spikey' for database must include %f or %U format
    
    Recovery Manager complete.
    Don't know how it worked for Levi without %f or %U. So, I added %f
     $ vi restore.txt
     $ cat restore.txt
    run
     {
     SET NEWNAME FOR DATABASE TO '/fnup/hwrc/oradata/spikey/%f';
     restore database  ;
     }
    
    
     $ rman target / cmdfile=restore.txt
    
    Recovery Manager: Release 11.2.0.3.0 - Production on Thu Jul 26 04:45:45 2012
    
    Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.
    
    connected to target database: SPIKEY (DBID=2576163333, not open)
    
    RMAN> run
    2>  {
    3>  SET NEWNAME FOR DATABASE TO '/fnup/hwrc/oradata/spikey/%f';
    4>  restore database  ;
    5>  }
    6>
    7>
    8>
    executing command: SET NEWNAME
    
    Starting restore at 26-JUL-12
    using target database control file instead of recovery catalog
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: SID=19 device type=DISK
    
    channel ORA_DISK_1: starting datafile backup set restore
    channel ORA_DISK_1: specifying datafile(s) to restore from backup set
    channel ORA_DISK_1: restoring datafile 00001 to /fnup/hwrc/oradata/spikey/1
    channel ORA_DISK_1: restoring datafile 00002 to /fnup/hwrc/oradata/spikey/2
    channel ORA_DISK_1: restoring datafile 00003 to /fnup/hwrc/oradata/spikey/3
    channel ORA_DISK_1: restoring datafile 00004 to /fnup/hwrc/oradata/spikey/4
    channel ORA_DISK_1: restoring datafile 00005 to /fnup/hwrc/oradata/spikey/5
    channel ORA_DISK_1: restoring datafile 00006 to /fnup/hwrc/oradata/spikey/6
    channel ORA_DISK_1: restoring datafile 00007 to /fnup/hwrc/oradata/spikey/7
    channel ORA_DISK_1: restoring datafile 00008 to /fnup/hwrc/oradata/spikey/8
    channel ORA_DISK_1: restoring datafile 00009 to /fnup/hwrc/oradata/spikey/9
    channel ORA_DISK_1: reading from backup piece /u07/bkpfolder/SPIKEY_full_01nh0028_1_1_20120725.rmbk
    channel ORA_DISK_1: errors found reading piece handle=/u07/bkpfolder/SPIKEY_full_01nh0028_1_1_20120725.rmbk
    channel ORA_DISK_1: failover to piece handle=/u07/dump/bkpfolder/SPIKEY_full_01nh0028_1_1_20120725.rmbk tag=SPIKEY_FULL
    channel ORA_DISK_1: restored backup piece 1
    channel ORA_DISK_1: restore complete, elapsed time: 00:01:56
    Finished restore at 26-JUL-12
    
    Recovery Manager complete.
    As you can see, RMAN restore data files to the desired location. But the data file names ended up as
    1
    2
    3
    .
    .      
    .
    9
    !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -----------| Holy Cow |-----------------------------


    So I had to rename each file as below
    $ mv 1 /fnup/hwrc/oradata/spikey/system01.dbf
    $ mv 2 /fnup/hwrc/oradata/spikey/sysaux01.dbf
    $ mv 3 /fnup/hwrc/oradata/spikey/undotbs01.dbf
    I would have been better in execution of the order for each data below file
    SET NEWNAME FOR DATAFILE
    Now, I think, there is no advantage in using NEWNAME SET of DATABASE to. Only the disadvantages. I did anything wrong above?

    Martin;

    On the issue of the VALUE of NEWNAME FOR DATABASE, you must specify at least one of the first three of the following substitution variables to avoid collisions of names: %b f % U. see semantic entry for TO 'filename' for a description of the possible substitution variables.

    You use %f

    %b
    
    Specifies the filename without the fully qualified directory path. For example, the datafile name /oradata/prod/financial.dbf is transformed to financial.dbf. This variable enables you to preserve the names of the datafiles while you move them to different directory. During backup, it can be used for the creation of image copies. The variable cannot be used for OMF datafiles or backup sets.
    
    %f
    
    Specifies the absolute file number of the datafile for which the new name is generated. For example, if datafile 2 is duplicated, then %f generates the value 2.
    
    %U
    
    Specifies a system-generated unique filename. The name is in the following format: data-D-%d_id-%I_TS-%N_FNO-%f. The %d variable specifies the database name. For example, a possible name might be data-D-prod_id-22398754_TS-users_FNO-7.
    

    Source - E10643-01

    Backup and recovery reference

    http://docs.Oracle.com/CD/E14072_01/backup.112/e10643/rcmsynta2014.htm

    I see CKPT and I agree on that!

    Best regards

    mseberg

  • What is the value mentioned in the 'group' in the form of definition list of choices.

    What is the group in the form of definition list of choices. Is this something I need to create a group first and then assign it here or just type a group, it will be created?

    I created a list of choices like below

    (2) created a sandbox and a search box with list drop down option in the console of sysadmin. (not as a searchable list of choice).

    (3) created a sanbox in the console of the identity and trying to add a list of value of the ADF, nothing is coming (not able to see the field).

    For this field of type lookup should I select only one ADF option or select one choice, instead of the ADF value entry list?

    Please suggest.

    Hello

    On the creation of research of the Group field is just for research or to specify as a result of research belonging to a specific group. For example, you can specify your specific project for all custom research chain, that you created so that in the end, you can recognize your custom research and research OOTB.

    The user interface component is depend on your condition for example if you want dropdown and a single value undergo framework that you can use selectonechoice ADF and ADF LOV alone is different where all values given in different pop up and on the selection of a value of the same value obtained on LOV but I have tested this web composer LOV component and don't forget not there is a problem with this element of the adf. I added outside rather than web composer LOV.

    To try and discover what ADF UI component is adapted to your condition by activating your sandbox and when you finalize the component that only publish your sandbox.

    Kind regards

    Shantanu

  • How is it that I can ping between ESXi vmkernel interfaces with the sizes of package exceeding the value set in my passage upstream and one located in my vmkernel port group itself?


    I have a 10 GB dell powerconnect 8024f the switch and the firmware is OLD, but the port config shows maximum frame size = 9000 to all cable ports

    2 guests ESXi 5.5 wired, build 1331820, put each host computer network is managed by a single port dual qlogic 8150 ANC

    When I connect to my windows VM to check my new 10 GB connectivity (it is configured for jumbo mtu = 9000 frames) and ping-l 8190 against ESXi vmkernel interface that was MTU of 1500, I get an answer without any packet loss... How can it be if the port is configured for only 1500 MTU?  I thought that the two vmkernel port group and vswitch properties must have 9000 mtu defined, it appears that the vswitch properties override the port group properties.

    But I know I must be missing something, a few important concepts, somewhere, because when I connect to ESXi via ssh I can ping devices with values greater than 8190 and not just windows virtual machines that reside on the same host where the ping uses the internal bus, but I am referring to the connections of the host of other ESXi on the switch management.

    In summary - how the VMkernel does ping and response to pings of bigger sizes greater than the value of the switch upstream?   and why do ping with large packets get answers when the vmkernel port group is always set at 1500, is this a bug or is this feature obsolete?   I remember specifically in ESXi5 that I had to configure the vmkernel port group and the vswitch for this property to work.

    Unless you specify "Don ' t fragment" (-f for Windows) you will be able to use any size package successfully.

    For ESXi, take a look at Troubleshooting ESXi Jumbo Frames.

    André

  • How to select the values for each check box in a group of records

    Hello

    I have a requirement in form 10g. In this form there are 10 records are display each record has a checkbox is there if I click on the check box save number one and number three and make some changes in the text field (field adjustment is the number data type) and then finally, I want to see the total a total amount called field.

    In this, my question is how to select specific to a group of records records? and finally these selected records are inserted in a table.
    Because I am not able to read these records at a time.
    Is there any table to define a record group to fetch each of them individually for example Rec [1] Rec [2]... like this if yes please suggest me the steps how to do this.

    Thanks in advance
    Prasanna

    Published by: user10315107 on December 17, 2008 23:44

    OK, so you want to shoe the total amount in the form itself (I guess that somewhere under the dashboard lines?).

    You can do this easily using formulat elements:

    1 create a new item in your block where the field amount is places, set "section of the database" on the 'No', 'calculation mode' to the 'formula' and the 'formula' himself to something like:

    CASE WHEN :BLOCK.CHECKBOXITEM=CHECKVALUE THEN :BLOCK.AMOUNT+:BLOCK.ADJUSTMENT ELSE 0 END;
    

    This formula returns 0 if the checkboxitem is not checked, otherwise the sum of amount and adjustment (of course you can adjust the names of elements and the value for 'Checked')
    2. place the element in the layout, if you wish.
    3. set the property "Query all Records" to "true" for your block elements, this is necessary for the calculation to work
    3 create a control block to keep summary article in a, "Single Document" set to 'True '.
    4. place a new element in this control block, set 'Calcuation mode' to 'Summary', 'Summary block' to your block elements, 'Summary point' in newly created formula section in the block elements
    and function of synthesis for the "sum".
    5. place the element in the layout

    She's.

  • Is it possible to use the batch is script to retrieve the value window server political group?

    Y at - it a batch command that will allow me to recover the value of group policy in Windows server? Something like gpedit.msc did, but I want because of the command line I want to convert this value to format I want.

    Example: If I open gpedit.msc, then I go to Computer Configuration\Windows Settings\Security Settings\Local Policies\User Rights Assignment\Restore files and directories so I can get the value (administrators, backup operators) of this policy.

    All ways in the batch script can bring me to this path and capture value?

    Thanks, your help is very appreciated.

    Hello

    You could try to look at the list of Group Policy scripts or repost the question to the Scripting Guys or in Forum Windows Server forum.

    The guys from script

    Windows Server

  • How can I request the parameters of custom folder to a specific group of records under XP?

    Hello everyone.

    I'm THAT n00b-ish person asking the stupid question. But I can't understand for save the children. So I want to open with 1 million wishlist.

    I'm organizing my files of music inside the folder 'my music '. I am aware that since he is a 'special' folder, I can not customize it at the root.
    SO, I'm trying to customize the folders inside and make sure the radio button for "apply it to all subfolders" is checked. However, the options that I can apply are quite limited (essentially, I have the choice to make all files to display as thumbnails or icons, which isn't exactly the most intuitive way to search for music).
    I went to come a taken ONE of my files and converted to retail and added columns flow, track number, etc. so theoretically, I can fix my list in order: artist, title of song, duration, flow, track number, album, genre, folder

    (It's because I'm always organize a lot of my music as its most often jumbled together from various sources incorrectly appointed or mixed compilations or what have you).

    I tried everything under the Sun to figure out how to make this setting this record, applied to all of the folders inside my music. BUT there seems to be no way to save it as a template or apply it to a group of files (all I see is that I can do EVERY file on my computer that I don't want).

    Any help is very appreciated. Thanks in advance. See you soon.
    * original title - forgive my innanity, how I apply some settings to custom folder as a specific group of folders.*

    Hello

    I suggest to refer to the link below and follow the troubleshooting steps to customize folders.

    How to modify your folder view settings or customize a folder

    http://support.Microsoft.com/kb/812003

  • How can I hide the addresses in my list of contacts in specific group when I send an e-mail to this group?

    How can I hide the addresses in my list of contacts in specific group when I send an e-mail to this group?  I don't want to have all email addresses

    made available to everyone in the group.

    Thank you!

    You use Windows Mail? The bold at the bottom is the party concerned.
     
    You can also create groups if you send e-mail to the same people often.
     
    You can create a single group name (or alias) to use when sending a message to several contacts at the same time. Just create a group name and add individual contacts to the group. Then just type the name of the group in the box for when you send mail.
     
    1. in the address book, select the folder in which you want to create a group. Click New in the toolbar, and then click New Group.
    2. the Properties dialog box opens. In the group name box, type the name of the group.
    3. There are several ways to add people to the Group:
    a. to add a person from your address book list, click Select members, and then click a name in the address book list.
    (b) to add a person directly to the group without adding the name to your address book, type the person's name and e-mail address at the bottom of the Properties dialog box and then click Add.
    to add a person to both the Group and your address book, click New Contact and enter the appropriate information.
    (d) to use a directory service, click Select members, and then click search. Select a directory service in the drop-down list at the end of the text box. After finding and selecting an address, it is automatically added to your address book.
    4. Repeat for each addition until your group is defined.
     
    Note
     
    a. to view a list of your groups separately from the list of address book in the address book on the view menu, make sure that folders and groups is selected.
     
    b. you can create multiple groups, and contacts can belong to several groups.
     
    If you want to send to a group without addresses are displayed for each recipient, open the address book and make a new entry. Enter the name of the group in the area of the display, but use your address. (Some Internet service providers require a legitimate address in the line to and recipients will know it's from the Group).
     
    Click on the button to. Enter the name of the group using your address. Enter the group in the BCC field.
  • Only specific groups should get authenticated on ISE instead of the entire announcement

    Hello friends,

    I have integrated ISE to RFA, but all users of the AD are get authenticated against my network devices and get landed in exec mode, if these users have privileges to perform the configuration, network admins are able to do it because I defined the names of groups admin in the authorization policy, now I want to set only the names of specific groups in the authentication instead of the name of ads policy is it possible to do?

    Thanks in advance.

    Best regards / Tash

    This does not work, have you added the groups you wan't to check for membership in the menu external identity Sources / Active Directory/AD-name/groups? Those that you add, you should see when you press on the + sign next to 'if' and select the name you gave your definition of external advertising.

Maybe you are looking for