Select Empno,name,sum()..group by empno only  Is this possible?

select empno,name,sum(sal) from emptable where year=' ' groub by empno order by empno.
this query getting error because i didn't include empname in group by.
But if i include this name, my sum is not correct.
so i want to empno,name but i don't want to include name in group by. Is this possible?
My oracle verion is 8.
IS any other solution to solve this problem?
Thanks in advance.

i want to empno,name but i don't want to include name in group by. Is this possible?<br>
<br>
No. It isn't.
<br>
select empno,name,sum(sal) over (partition by empno) <br>
from emptable
<br>where year=' '
<br>
-- <s>groub by empno</s>
<br>
order by empno;

Similar Messages

  • Locking a subset of Wiki pages as read-only: Is this possible?

    I have a workspace setup where all participants have workspace-member role privilege which allows them to update content - and in particular - wiki pages. This is a business requirement for this particular site purpose.
    However - I would like to lock down one (or more) wiki pages within the pages on this workspace - as read-only.
    Is it possible to have some pages within a workspace locked as read-only to named users - while the other wiki pages are available for update to workspace participants? If so - how?
    Thank you

    Hi,
    No, we cannot selectively lock down Wiki pages as read only unfortunately as we don't have access controls at the individual page level.
    However, what may be doable is for you to flag the page as non-changeable and to set up an RSS feed to the Wiki page and if anyone changes it you can go in an look at who did it and more importantly you can roll it back to the previous version as the change logs will be kept and can be backed out if required. There is an entry here: http://weblog.oraclecorp.com/weblog/team/Beehive that shows how to set up specific RSS feeds.
    Not ideal but a possible way of catching any unauthorized change and correcting it + giving you the culprit :-)
    Phil

  • Error when use"select case when sum() group by"

    SELECT REGION_CODE
    ,REGION_DESC
    ,CASE WHEN SUM(UP_SMS_TIMES) BETWEEN T2.SMS_MIN AND T2.SMS_MAX THEN T2.SMS_LVL_CODE END
    FROM PMID.TB_MID_PAR_EXT_USER_MON T1, PCDE.TB_CDE_SMS_LVL T2
    WHERE DEAL_DATE='200811'
    GROUP BY REGION_CODE, REGION_DESC
    {color:#ff0000}error:ORA-00979: not a GROUP BY expression
    {color}{color:#000000}How can i fix the error,Thanks{color}

    -- CREATE TABLE TB_MID_PAR_EXT_USER_MO
    create table TB_MID_PAR_EXT_USER_MON
    DEAL_DATE CHAR(6),
    REGION_CODE CHAR(2),
    REGION_DESC VARCHAR2(20),
    UP_SMS_TIMES NUMBER(14) default 0,
    --INSERT SAMPLE DATA TO TB_MID_PAR_EXT_USER_MO
    insert into TB_MID_PAR_EXT_USER_MON(DEAL_DATE,REGION_CODE,REGION_DESC,UP_SMS_TIMES)
    VALUES('200812','BJ','BEIJING'11)
    insert into TB_MID_PAR_EXT_USER_MON(DEAL_DATE,REGION_CODE,REGION_DESC,UP_SMS_TIMES)
    VALUES('200812','SH','SHANGHAI',7)
    insert into TB_MID_PAR_EXT_USER_MON(DEAL_DATE,REGION_CODE,REGION_DESC,UP_SMS_TIMES)
    VALUES('200812','SH','SHANGHAI',9)
    insert into TB_MID_PAR_EXT_USER_MON(DEAL_DATE,REGION_CODE,REGION_DESC,UP_SMS_TIMES)
    VALUES('200812','BJ','BEIJING',10)
    insert into TB_MID_PAR_EXT_USER_MON(DEAL_DATE,REGION_CODE,REGION_DESC,UP_SMS_TIMES)
    VALUES('200812','BJ','BEIJING',5)
    insert into TB_MID_PAR_EXT_USER_MON(DEAL_DATE,REGION_CODE,REGION_DESC,UP_SMS_TIMES)
    VALUES('200812','BJ','BEIJING',19)
    ---- CREATE TABLE TB_CDE_SMS_LVL
    create table TB_CDE_SMS_LVL
    SMS_LVL_CODE INTEGER,
    SMS_LVL_DESC VARCHAR2(20),
    SMS_MIN NUMBER(14,2),
    SMS_MAX NUMBER(14,2)
    --INSERT SAMPLE DATA TO TB_CDE_SMS_LVL
    INSERT INTO TB_CDE_SMS_LVL(SMS_LVL_CODE,SMS_LVL_DESC,SMS_MIN,SMS_MAX)
    VALUES(1,'0 ITEM',-1.00,0.00)
    INSERT INTO TB_CDE_SMS_LVL(SMS_LVL_CODE,SMS_LVL_DESC,SMS_MIN,SMS_MAX)
    VALUES(2,'0-20 ITEM',0.00,20.00)
    INSERT INTO TB_CDE_SMS_LVL(SMS_LVL_CODE,SMS_LVL_DESC,SMS_MIN,SMS_MAX)
    VALUES(3,'20-40 ITEM',20.00,40.00)
    INSERT INTO TB_CDE_SMS_LVL(SMS_LVL_CODE,SMS_LVL_DESC,SMS_MIN,SMS_MAX)
    VALUES(4,'40- ITEM',40.00,9999999.00)
    --NOW,LET'S EXEC THE FOLLOWING STATEMENT
    SELECT REGION_CODE,REGION_DESC
    ,MAX(CASE WHEN SUM(UP_SMS_TIMES) BETWEEN T2.SMS_MIN AND T2.SMS_MAX THEN T2.SMS_LVL_CODE END) AS SMS_LVL
    FROM PMID.TB_MID_PAR_EXT_USER_MON T1,PCDE.TB_CDE_SMS_LVL T2
    WHERE DEAL_DATE='200811' AND UP_SMS_TIMES>0
    GROUP BY REGION_CODE, REGION_DESC
    --MY REQUIRED RESULT IS
    REGION_CODE REGION_DESC SMS_LVL
    SH SHANGHAI 2
    BJ BEIJING 4
    Thanks you!

  • I have several groups on my Mac Address Book and would like to sync only one group to each IOS5 device (each device getting a different group).   Is this possible?

    I have several groups on my Mac Address Book and would like to sync only one group to each IOS5 device (each device getting a different group) via iCloud.   Is this possible?    If so, how is it done?
    Thanks in advance,,,,,

    Can we control syncing at all? I can't seem to make a Local/On My Mac group in Address Book.

  • Select count of sum

    Hi
    Need help with getting a count of different sums:
    Table: Stay
    Columns: Name, Nights
    each name can have multiple rows with different number of nights, now I have a select looking like this:
    select sum(nights),name from stay
    group by name
    The result could look something like this:
    1 smith
    2 miller
    1 grant
    1 simpson
    2 sharp
    How do I do to get a count on the sum(night)? Is it possible in the same query?

    If you want to count how many distinct records appear in your current select statement (i.e. 5 in this case), you can do
    SELECT count(*) num_distinct_guests,
           total_nights,
           name
    FROM (
      SELECT sum(nights) total_nights,
             name
        FROM stay
      GROUP BY name
    )If you want the total number of stays, in addition to the total time stayed, use something like
    SELECT sum(nights),
           name,
           count(nights)
      FROM stay
      GROUP BY name;Justin

  • Pt:treelink Select Users From Specified Group

    Is there anyway to have the pt:treelink show classid="1' (users) from a specific group? I can pass a rootid="ADMIN_FOLDER_ID" and get it to only list objects in that folder id. I'm looking for something similar to pass a GroupID="X", where X is the group that I want to display users from.
    Thanks,
    Jon Yutzy

    I'm looking for something similar to this, although without specific selecting.
    I would like to popup a list of users inside a group (just to view who's in the group).
    I've seen the plumtree portal itself do this while managing security access to different portal objects. You can click the group name to see who's inside. This is exactly what i'm looking for.
    Considering this post was originally made a year and a half ago, has anything become of this?

  • Address Book names and groups are gone - forever?

    Hmmm.
    After I added two names to Address Book from a message header in Mail, I noticed a duplicate name and selected the menu item to merge the two "cards."
    Boom, as teh steve would say, several groups and over a hundred names are gone, now.
    Only two names remain—the name I was adding and the duplicate name I was merging
    (the one with the wrong spelling, ironically).
    No undo was available. Nothing appeared in the trash. No, "Are you sure?" No warning messages about the change having no recourse, etc.
    I've already had 2 very stiff drinks (I'm over 21 and do not intend to drive and feel otherwise socially responsible and do not condone irresponsible behaviour, etc., etc., etc.)
    Any ideas about recovering any data would be REALLY helpful. Thank you.
    I notice there's a way to back up the Address Book data. Gee, that's really nice to know, now.
    Edit: OS is 10.4.11 with this problem
    Message was edited by: stan

    Sorry Stan... have you rebooted yet?
    Look & see if you have a file like this...
    Address Book - 7:31:08.abbu
    Date will be different.
    In finder go to /Users/YourUserName/Library/Application Support/AddressBook
    see if there are any files like this in it...
    AddressBook.data
    Images
    AddressBook.data.previous
    ABPerson.skIndexInverted
    .import.lockN
    .skIndex.ABPerson.lockN
    .database.lockN
    AddressBook.data.beforesave
    ABPerson.skIndex
    LastImport.plist
    If it's really gone, quit using the computer if you wish a chance to recover it.

  • I need to show grouped id and only the max order value for each unique id

    select distinct 
    Table1.id,
    Table1.id +' - '+ Table1.VisitNumber +' : '+ Table1.Priority as UidVisitKey,
    Table1.VisitNumber,
    DATEDIFF(d, [dob],[Visite_dte])/365.25 as Age_On_Visit,
    Table1.Priority,
    Table1.OrderOfVisit,
    Table1.OrderOfVisit + ' - ' + Table1.Notes AS VisitNote, 
    Table1.Visitor_FName,
    Table1.Visitor_SName,
    Table2.dob,
    Table2.sex,
    Table1.Visit_dte,
    into #Temp1
    FROM         Table1 INNER JOIN
                Table2 ON Table1.id = Table2.id
    WHERE Table1.LeaveDate IS NOT NULL 
    and Table1.LeaveDate  between DATEADD(mm,-1,DATEADD(mm,DATEDIFF(mm,0,GETDATE()),0)) 
    and DATEADD(ms,-3,DATEADD(mm,0,DATEADD(mm,DATEDIFF(mm,0,GETDATE()),0))) 
    select #Temp1.id, max(#Temp1.[OrderOfVisit]), #Temp1.VisitNote 
    from #Temp1
    group by #Temp1.id, #Temp1.OrderOfVisit, #Temp1.[VisitNote]
    ORDER BY #Temp1.id
    drop table #Temp1
    ---I need to show grouped id and only the max OrderOfVisit for each unique id, and the VisitNote for each OrderOfVisit
    ----------------need help-------------

    Sounds like this
    select distinct
    Table1.id,
    Table1.id +' - '+ Table1.VisitNumber +' : '+ Table1.Priority as UidVisitKey,
    Table1.VisitNumber,
    DATEDIFF(d, [dob],[Visite_dte])/365.25 as Age_On_Visit,
    Table1.Priority,
    Table1.OrderOfVisit,
    Table1.OrderOfVisit + ' - ' + Table1.Notes AS VisitNote,
    Table1.Visitor_FName,
    Table1.Visitor_SName,
    Table2.dob,
    Table2.sex,
    Table1.Visit_dte,
    into #Temp1
    FROM Table1 INNER JOIN
    Table2 ON Table1.id = Table2.id
    WHERE Table1.LeaveDate IS NOT NULL
    and Table1.LeaveDate between DATEADD(mm,-1,DATEADD(mm,DATEDIFF(mm,0,GETDATE()),0))
    and DATEADD(ms,-3,DATEADD(mm,0,DATEADD(mm,DATEDIFF(mm,0,GETDATE()),0)))
    select id,OrderOfVisit,VisitNote
    from
    select #Temp1.id, #Temp1.[OrderOfVisit], #Temp1.VisitNote,ROW_NUMBER() OVER (PARTITION BY #Temp1.id ORDER BY #Temp1.[OrderOfVisit] DESC) AS Seq
    from #Temp1
    )t
    WHERE Seq = 1
    ORDER BY id
    drop table #Temp1
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Restricting certain users groups to read only for certain folders

    Hi
    I'm not sure if this is the correct forum, but hey, hopefully someone might now the answer or direct me to the correct one.
    I'm writing a VB program to amend ACLs for specific user groups.
    Effectively, I make all prior year folders read only, whereas the default for the group is Modify, Delete etc.  This means they can continue to work in the "new year folders", but historic years is List/read only.
    I've got to the point the program does everything I want, i.e. stops folder creation7deletion, file & folder name changes, copying for the historic years, but does not prevent deletion of files in the folder.  Effectively I set Deny access on the
    historic folders.
    Testing using the Windows GUI would appear to resolve the problem is I change the Deny Special Permission (for the group) from "This folder only" to "This folder & files".
    Question then is how to I set this in VB, the default appearing to be "This folder only"
    Here's extract of my code
    Thanks
    IfvarDirectoryName.IndexOf("\"&
    Date.Now.Year) = -1
    Then
                FileAcl3.AddAccessRule(
    NewFileSystemAccessRule(GroupAdmin(0),
    FileSystemRights.Modify,
    AccessControlType.Deny))
                FileAcl3.AddAccessRule(
    NewFileSystemAccessRule(GroupAdmin(0),
    FileSystemRights.DeleteSubdirectoriesAndFiles,
    AccessControlType.Deny))
                FileAcl3.RemoveAccessRule(
    NewFileSystemAccessRule(GroupAdmin(0),
    FileSystemRights.ReadAndExecute,
    AccessControlType.Deny))
                FileAcl3.RemoveAccessRule(
    NewFileSystemAccessRule(GroupAdmin(0),
    FileSystemRights.ListDirectory,
    AccessControlType.Deny))
    Dim FileInfo3 As IO.FileInfo = New IO.FileInfo(varDirectoryName)
    Dim FileAcl3 As New FileSecurity
    If varDirectoryName.IndexOf("\" & Date.Now.Year) = -1 Then
    FileAcl3.AddAccessRule(New FileSystemAccessRule(GroupAdmin(0), FileSystemRights.Modify, AccessControlType.Deny))
    FileAcl3.AddAccessRule(New FileSystemAccessRule(GroupAdmin(0), FileSystemRights.DeleteSubdirectoriesAndFiles, AccessControlType.Deny))
    FileAcl3.RemoveAccessRule(New FileSystemAccessRule(GroupAdmin(0), FileSystemRights.ReadAndExecute, AccessControlType.Deny))
    FileAcl3.RemoveAccessRule(New FileSystemAccessRule(GroupAdmin(0), FileSystemRights.ListDirectory, AccessControlType.Deny))
    FileInfo3.SetAccessControl(FileAcl3)
    End If

    Ho Rohn
    Your right, when I added the flags I got the following error at execution
    {"No flags can be set. Parameter name: inheritanceFlags"}
    I've developed a work around, which gives me exactly - subject to further testing - what I want.  I simply mark each file in the relevant folders with a Deny Delete option.
    I will however explore the DirectorySecurity class option, but initial review of the www seems a little shy on VB examples.
    Thanks
    Perry
    You should be able to use FileSecurity and DirectorySecurity the same way (they have identical methods). Since this is a scripting forum, I'll provide a PowerShell example (which is fairly close to C# and VB; they all use the exact same classes):
    $varDirectoryName = "c:\folder"
    $GroupAdmin = "Admin Group"
    $FileInfo3 = New-Object System.IO.DirectoryInfo $varDirectoryName
    $FileAcl3 = $FileInfo3.GetAccessControl()
    $FileAcl3.AddAccessRule((New-Object System.Security.AccessControl.FileSystemAccessRule (
    $GroupAdmin,
    [System.Security.AccessControl.FileSystemRights]::Modify,
    ([System.Security.AccessControl.InheritanceFlags]::ContainerInherit -bor [System.Security.AccessControl.InheritanceFlags]::ObjectInherit),
    [System.Security.AccessControl.PropagationFlags]::None,
    [System.Security.AccessControl.AccessControlType]::Allow
    $FileInfo3.SetAccessControl($FileAcl3)
    I could have taken a lot of shortcuts when using the enumerations, but I think keeping it verbose helps show how similar the code can be.
    Does that make sense?

  • Best way of creating a report where end user can maintain names in groups

    I'm working on a project as a independent consultant for a company and I'm using Crystal Professional Reports version XI.
      I have a main report and a subreport that contains summary totals.  I'm going to link the two reports by a date parameter range.  For the subreport, the report is going to be grouped by four groups.  Each of the groups contain a list of names.  What would the best approach to give the end user who will be running the report on a daily basis to add or remove names for each of the groups when end user is prompted to run the report?
       I want to make it easy as possible for the end user to maintain this list in the sub report because of the following reasons: after the report is deployed,I will not be there on site to maintain it instead I will be available over the phone for support and the end user is the manager of the department and is not a Crystal reports developer or programmer. 
       I hope that made sense.  If not I can give more details.  Have a good day.
    Thanks for your help,
    Ting

    Well let me start by saying that maintaining hard coded lists in a report definition is a bad idea and should be avoided if at all possible.
    This of course means that it isn't always possible... In fact I have a few of my own reports that suffer from the same situation. Here is the way I handle it to make the list maintenance as easy and error free as possible.
    #1) I created a new Report Custom Function. Let's call it  NamesToGroups. The function will look like this... (Crystal Syntax)
    Function (stringVar PersonName)
    SELECT PersonName
    CASE
    "Gustavo Achong",
    "Catherine Abel",
    "Kim Abercrombie",
    "Humberto Acevedo",
    "Pilar Ackerman",
    "Frances Adams",
    "Margaret Smith",
    "Carla Adams" :
        "Name of Group 1"
    CASE
    "Jay Adams",
    "Ronald Adina",
    "Samuel Agcaoili",
    "James Aguilar",
    "Robert Ahlering",
    "François Ferrier",
    "Kim Akers",
    "Lili Alameda",
    "Amy Alberts" :
        "Name of Group 2"
    CASE
    "Alberto Baltazar",
    "Wayne Banack",
    "Darrell Banks",
    "Norma Barrera",
    "Gytis Barzdukas",
    "David Bartness",
    "Karel Bates" :
        "Name of Group 3"
    CASE"Donald Blanton",
    "Linda Burnett",
    "Michael Blythe",
    "Gabriel Bockenkamp",
    "Michael Bohling",
    "Eli Bowen",
    "Lester Bowman",
    "David Bradley" :
        "Name of Group 4"
    Default : "Unknown Name"
    Note that the list setup makes it easy to see who's in what group and makes it easy to add new people to the correct group...
    #2) Now you can simple use the function in a formula. Lets call it NameGroups and the formula would look like this...
    NamesToGroups({TableName.FullPersonName})
    #3) Now NameGroups is available for grouping or selection purposes or just to add as a formula on the design surface.
    #4) If you are using CRS or BOE the function can be saved to the repository for use in other reports as well
    Now any time a new name needs to be added, the user can access the "Report Custom Functions" are of the Formula Workshop and add the name to the function, which in turn, will be propagated through the rest of the report. It's also easy to see how the function is actually working so that new groups can also be easily added.
    HTH,
    Jason

  • Is InfoPackage Group is the only way to run the InfoPackages Parallel???

    Hello BW Experts,
    If we want to divide a huge full upload InfoPackage with certain selection ranges in each InfoPackage, do we have to run them one by one according to our selcetions or can we run them parallel to each other??
    If we run these IPs parallel, is InfoPackage group is the only way or is there any other option and if yes, which one is better??
    plz help..!!
    Thanks & regards,
    Sapster.
    (assure points)

    Hi,
    Please do not assure us of your points...points are integral to SDN and everyone knows about them.
    In your previous posts, you have been advised that InfoPackage groups are obsolete and that you should proceed with process chains. Have you read those replies?
    Step-by-Step procedure to create an InfoPackage Group & a Scenario!!
    InfoPackage is one option. The better, more widely used and recommended option is using Process Chains.
    Hope this helps...

  • When trying to rotate a group of photos only one of them rotates

    When trying to rotate a group of photos only one of them rotates.

    Do you perhaps have the "Primary Only" flag enabled?
    The little button with the framed "1"  ?  Or in the "Edit" menu "Primary Only"?
    See:  Keywords or ratings are applied only to one of the selected images - why?

  • Sorting and filtering by select-multi person or group field in the list in SharePoint 2013

    Hi everybody,
    In SharePoint 2013, I have defined a column as "Person or Group" field, which you allow for multiple selections. when I try to sort/filter it by this field in the list. The field doesn't show up in the dropdown. If I changed "Allow multiple
    selections" option to "No" by clicking the column name to edit it in "List Settings", the field can show up sort in the dropdown.
    How about support sorting and filter by select-multiple "Person or Group" field in sharepoint 2013?
    BTW, in SharePoint 2010, it can support this issue no matter what the "Allow multiple selections" option the request is.
    Any help would be great!
    Thanks,
    Jodie

    Hi Jodie,
    Can you please give this as a try.
    To fix the Filter Issue on Assigned To Column. We need to run the following scripts.
    The field which allows more than one values or which allows multiple selections. The multi-valued fileds are non-sortable,
    non-filterable. Multi-valued fields cannot be indexed
    $web=Get-SPWeb
    $list=$web.Lists[] $field=$list.Fields[ColumnName] $strSchema=$field.SchemaXml $str=Schema$strSchema.Replace("Sortable=`"FALSE`"","Sortable=`"true`"")
    $field.SchemaXml = $strSchema
    Krishana Kumar http://www.mosstechnet-kk.com
    Thanks for your reply, I have tried to run the scripts, but it still cannot work. The following is my scripts:
    $web=Get-SPWeb 'http://cst-server-01'
    $list=$.web.Lists["Product Request"]
    $field=$list.Fields["Applicant"]
    $strSchema=$field.SchemaXml
    $str=Schema$strSchema.Replace("Sortable='"FALSE'"", "Sortable='"True'"")
    $field.SchemaXml = $strSchema

  • How to create sharepoint Group with read only permissions using powershell for entire site ?

    How to create sharepoint Group with read only permissions using powershell for entire site (including subsites and top level site)

    Hi
    using (SPSite site = new SPSite(url))
    using (SPWeb web = site.OpenWeb())
    SPUserCollection users = Web.AllUsers;
    SPUser owner = users[string.Format("{0}{1}", "Domain", "Owner Username")];
    SPMember member = users[string.Format("{0}{1}", "Domain", "Default Member Username")];
    SPGroupCollection groups = Web.SiteGroups;
    string GroupName = “Super Exclusive”;//your group name
    string GroupDescription = “Super exclusive group description.”;
    groups.Add(GroupName, owner, member, GroupDescription);
    SPGroup NewSPGroup = groups[GroupName];
    SPRoleDefinition role = Web.RoleDefinitions["Read"];
    SPRoleAssignment roleAssignment = new SPRoleAssignment(NewSPGroup);
    roleAssignment.RoleDefinitionBindings.Add(role);
    Web.RoleAssignments.Add(roleAssignment);
    Web.Update();
    Please 'propose
    as answer' if it helped you, also 'vote
    helpful' if you like this reply.

  • Email selected users issue - sharepoint group

    Hi
    When we select a few users in the first page of the group and when we navigate to the second page, all the users that we selected on the first page are unselected. Is this the known issue or is it only in our environment

    its a known issue . Your selection is not kept when you change you go to next page .
    The possible solution that i can come up with is :
    go to the people and group-->select  group ==> settings ==> List settings scroll to bottom of page ==>under view click list view . again scroll down and yoou will see item Limit section now expan it == > change the number of items to
    display to increase the number from  default "30 " to "300" or "500" as per the limit of members you want top select to and then say ok .
    Now when you go back to the group you will have ann the members and you can slect and your selection will not be lost 

Maybe you are looking for

  • Delay due to selecting sysdate from  dual

    Our application accessing dummy table dual frequently for getting current date and time. But some times this could reduce our database performance. How could we overcome this problem. ASH report_ Top Events_ latch: library cache      29.87      "5015

  • Unable to reconcile journals in oracle cash mangement

    Hi I am facing one issue in oracle 11i We could not find 2 journal lines when we want to do bank reconciliation in Cash Management Module. Do we have any setup in GL or CM? Please help me on this issue. Thanks Guru Prasad.

  • Download ALV result list as excel-file in background job

    Dear Experts, I am looking for a possibily to download the result of an ALV based report as excel-file in a background job. Surely there is a standard function which can be used or at least some hints how to implement this. I searched the forum but c

  • Error with QM in interface

    For my client we developed a custom interface with the production monitoring system SCADA. Basically SCADA will generate a file that is picked up and read by our interface in order to register the prodution. The activities that are performed are: Cre

  • What's the timestamp actually mean?

    All the IDepthFrame, IBodyFrame, IColorFrame, IInfraredFrame interface have a member called "get_RelativeTime", and the description in MSDN simply is "Gets the timestamp of the * frame"(for body frame, color frame and  depth frame) or "Gets the sourc