How do I view attendance on recorded meetings?

How do I view attendance on recorded meetings that employees watched at a later date?

This is likely a permissions issue for the downloadable content. If the downloadable objects were uploaded directly to the meeting, then they reside in the Meeting's Uploaded Content folder. The permissions for the content will be the same as the room. If the meeting room is not public, meaning the host must accept attendees in, then the content may not be available through the recording. If needed, either change the permissions on the room, or move the content to the Content Library as well, and make it publicly viewable.
If the Meeting has been deleted from Connect, then it took all the contents of the the Uploaded Content folder with it, and the links will not work in the recording.

Similar Messages

  • How can I view all duplicate records

    Hello everyone,
    My question is very straight forward. How can I view all duplicate records?
    Thanks in advance,
    Sonya

    If you want to see duplicate records in a table and how many you have you can do something like this:
    Select all of the columns in the table and look for those having more than one row. If you're more concerned
    about duplicate keys than each column individual column being the same just select the key columns.
    select c1, c2, c3,..., count(*)
    from table
    group by c1, c2, c3...
    having count(*)>1
    order by c1, c2, c3...
    If you eventually want to get rid of the duplicates you can issue:
    delete from table t1
    where rowid not in
    (select max(rowid)
    from table t2
    where t1.c1 = t2.c1
    and t1.c2 = t2.c2...)
    Where c1, c2, c3... match your column list from the select statement above.
    HTH

  • How to restore/view the deleted records - Please help me on this regard

    Hi All,
    Please help me in restore/view the deleted data.
    I had removed 2 records from a table without back up and commited the same. Now I want to restore/view it, can you please guide me on this regard.
    Oracle Version: 10g
    OS: Windows XP
    Database in Archive Mode.
    With Regards,
    Jamearon

    Aman.... wrote:
    <snip>
    If all what you want is to view the data, you can use the Flashback's as of query which would enable you to go back either by SCN or by Timestamp. If you want to restore those rows back in the time( and losing the changes that has happened in that time ), you can use the Flashback Table option. An example of this is given below,
    http://www.oracle-base.com/articles/10g/Flashback10g.php
    HTH
    Aman....As promised, here's one way to use flashback to restore the one deleted row without having to impact the rest of the table with a general FLASHBACK TABLE.
    =~=~=~=~=~=~=~=~=~=~=~= PuTTY log 2011.01.23 15:17:56 =~=~=~=~=~=~=~=~=~=~=~=
    login as: oracle
    oracle@vmlnx01's password:
    Last login: Sun Jan 23 15:13:10 2011 from 192.168.160.1
    [oracle@vmlnx01 ~]$ sqlplus /nolog
    SQL*Plus: Release 10.2.0.4.0 - Production on Sun Jan 23 15:18:11 2011
    Copyright (c) 1982, 2007, Oracle.  All Rights Reserved.
    SQL> @doit
    SQL> col col_ts for a15
    SQL> conn scott/tiger
    Connected.
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Prod
    PL/SQL Release 10.2.0.4.0 - Production
    CORE10.2.0.4.0Production
    TNS for Linux: Version 10.2.0.4.0 - Production
    NLSRTL Version 10.2.0.4.0 - Production
    5 rows selected.
    SQL> --
    SQL> alter session set nls_timestamp_format='hh24:mi:ss.FF';
    Session altered.first we will create a test table and populate it. Pay close attention to the row identified by col_id=2
    SQL> drop table flashtest;
    Table dropped.
    SQL> create table flashtest
      2   (col_id number(1),
      3    col_ts timestamp,
      4    col_txt varchar2(10)
      5   );
    Table created.
    SQL> --
    SQL> insert into flashtest
      2    values (1, systimestamp, 'r1 v1');
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> exec dbms_lock.sleep(5);
    PL/SQL procedure successfully completed.
    SQL> --
    SQL> insert into flashtest
      2    values (2, systimestamp, 'r2 v1');
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> exec dbms_lock.sleep(5);
    PL/SQL procedure successfully completed.
    SQL> --
    SQL> insert into flashtest
      2    values (3, systimestamp, 'r3 v1');
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> exec dbms_lock.sleep(5);
    PL/SQL procedure successfully completed.
    SQL> --
    SQL> select * from flashtest;
        COL_ID COL_TS          COL_TXT
             1 15:18:14.896167 r1 v1
             2 15:18:21.841682 r2 v1
             3 15:18:28.772038 r3 v1
    3 rows selected.
    SQL> --
    SQL> update flashtest
      2   set col_ts = systimestamp,
      3       col_txt = 'r2 v2'
      4   where col_id = 2;
    1 row updated.
    SQL> commit;
    Commit complete.
    SQL> select * from flashtest;
        COL_ID COL_TS          COL_TXT
             1 15:18:14.896167 r1 v1
             2 15:18:35.929847 r2 v2
             3 15:18:28.772038 r3 v1
    3 rows selected.
    SQL> exec dbms_lock.sleep(5);
    PL/SQL procedure successfully completed.So at this point we can see that we have 3 rows, and row 2 has been modified from its original values.
    Now we will delete that row.
    SQL> --
    SQL> delete from flashtest
      2  where col_id=2;
    1 row deleted.
    SQL> commit;
    Commit complete.
    SQL> --
    SQL> select * from flashtest
      2  order by col_id;
        COL_ID COL_TS          COL_TXT
             1 15:18:14.896167 r1 v1
             3 15:18:28.772038 r3 v1
    2 rows selected.Now let's do a SELECT...VERSIONS and see what flashback knows about the row.
    SQL> --
    SQL> select col_id,
      2         col_ts,
      3         col_txt,
      4         nvl(versions_startscn,0) START_SCN,
      5         versions_endscn END_SCN,
      6         versions_xid xid,
      7         versions_operation operation
      8  from flashtest
      9  versions between scn minvalue and maxvalue
    10  where col_id=2
    11  order by col_id, start_scn;
        COL_ID COL_TS          COL_TXT     START_SCN    END_SCN XID              O
             2 15:18:21.841682 r2 v1               0    2802287
             2 15:18:35.929847 r2 v2         2802287    2802292 0200260082060000 U
             2 15:18:35.929847 r2 v2         2802292            0A002300A4060000 D
    3 rows selected.
    SQL> --And having seen the above, we can use a more selective form to provide the values for an INSERT statement to put the row back.
    SQL> insert into flashtest
      2     select col_id,
      3            col_ts,
      4            col_txt
      5     from flashtest
      6     versions between scn minvalue and maxvalue
      7     where col_id=2
      8       and versions_operation = 'D'
      9  ;
    1 row created.
    SQL> --
    SQL> select * from flashtest
      2  order by col_id;
        COL_ID COL_TS          COL_TXT
             1 15:18:14.896167 r1 v1
             2 15:18:35.929847 r2 v2
             3 15:18:28.772038 r3 v1
    3 rows selected.
    SQL>One could also query FLASHBACK_TRANSACTION_QUERY to get the actual DML needed to UNDO an operation on a single table.

  • How can I view duplicate records in a table?

    Hello everyone,
    My question is very straight forward. How can I view all duplicate records?
    Thanks in advance,
    Sonya

    Easy enough,
    select t1.n1,t1.c1,count(*) as "TOTAL_DUPS" from tableA t1 having count(*) > 1 group by t1.n1,t1.c1 order by count(*) desc
    Tyler

  • How do I access recorded meetings? when I click on the 'meetings' tab it says I don't have permission

    how do I access recorded meetings? when I click on the 'meetings' tab it says I don't have permission

    Meeting recordings will have a direct URL, just like meeting rooms and content within Connect. You likely not a member of the Meeting Host group or Admin group within that Connect account, so you don't have the permissions to access the Meeting Library.
    You will either need the Host of the meeting room that you are looking for the recording of to get you the link, and insure you have the correct permissions to view it, or have them move the recording to the Content Library where it can be placed in a folder that you have permissions to view.

  • How can I make my adodc connect faster to my SQL Server? It's taking a minute (so long) before I can view thousand of record in my listview.

    How can I make my adodc connect faster to my SQL Server? It's taking a minute (so long) before I can view thousand of record in my listview. Please anyone help me.
    I'm using this code:
    Public Class McheckpaymentNew
    Private cn As New ADODB.Connection
    Private rs As New ADODB.Recordset
    Private Sub McheckpaymentNew_Load(sender As Object, e As EventArgs) Handles MyBase.Load
    Try
    cn.ConnectionString = "DSN=database; UID=user; PWD=password"
    cn.Open()
    rs.CursorLocation = ADODB.CursorLocationEnum.adUseClient
    rs.CursorType = ADODB.CursorTypeEnum.adOpenStatic
    rs.LockType = ADODB.LockTypeEnum.adLockBatchOptimistic
    Catch ex As Exception
    MsgBox("Failed to Connect!, Please check your Network Connections, or Contact MIS Dept. for assistance.", vbCritical, "Error while Connecting to Database.."
    End
    End Try
    End Sub
    End Class

    How can I make my adodc connect faster to my SQL Server? It's taking a minute (so long) before I can view thousand of record in my listview. Please anyone help me.
    I'm using this code:
    Public Class McheckpaymentNew
    Private cn As New ADODB.Connection
    Private rs As New ADODB.Recordset
    Private Sub McheckpaymentNew_Load(sender As Object, e As EventArgs) Handles MyBase.Load
    Try
    cn.ConnectionString = "DSN=database; UID=user; PWD=password"
    cn.Open()
    rs.CursorLocation = ADODB.CursorLocationEnum.adUseClient
    rs.CursorType = ADODB.CursorTypeEnum.adOpenStatic
    rs.LockType = ADODB.LockTypeEnum.adLockBatchOptimistic
    Catch ex As Exception
    MsgBox("Failed to Connect!, Please check your Network Connections, or Contact MIS Dept. for assistance.", vbCritical, "Error while Connecting to Database.."
    End
    End Try
    End Sub
    End Class

  • How to overcome view changes in bdc session method  using recording ?

    how to overcome view changes in bdc session method  using recording ?
    ex-for mm01 in recording if i selected views basic data1 and basic data2.
    i seheduleded for background for after 3 days .
    if any body changes views by selecting other views also.
    how to overcome this with out programming ?
    is there any settings ?

    Hi,
    I am attaching few threads.Hope these will help you.
    If there are any error records in session, all those error records will get poulated in log .SM35 and after the session is completed , u can see error records which can be corrected and reprocessed again
    We have the structures BDCLD and BDCLM, which will capture the log details inthe session. Firstly, sesssion should be processed. After that log will be created. Then caputure the information into an internal table using BDCLM and BDCLD.
    and refer the link.
    error correction in bdc session
    regards
    Madhu

  • How do I view additional records in Work orders in SSM?

    How do I view additional records in work orders section? I want to view 100 records instead of the present 100 records? What would be the navigation to view more records ?

    Am going to close this one and replace with simpler question

  • How Do I View Adobe Live Training Which has been Recorded?

       There was an Adobe Connect training session today that I was unable to view due to other commitments.  How do I view the recorded session of this?
    The actual session was:
    Adobe Captivate & Interactive eLearning
      June 06, 2013
    Interactions add life to eLearning courses by making it engaging for the learners. It helps learners actively participate in the course and hence improves learning and retention. Join Dr. Pooja Jaisingh and Vish as they show you how to transform the drab content screens to interactive eLearning courses in a few simple steps. They will also demonstrate how you can easily publish these courses to HTML5 and/or apps for mobile consumption. Don’t miss it!
    They provided a link during the beginning of the session, but it only pointed to live events:
    http://www.adobe.com/cfusion/event/index.cfm?event=list&loc=en_us&type=&product=Captivate& interest=&audience=&monthyear=
    Thank you,
    Mark

    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    You can also try "Reset all user preferences to Firefox defaults" on the [[Safe mode]] start window.
    * http://kb.mozillazine.org/Websites_look_wrong

  • How do I view TV from Panasonic recorder DMR-BWT835 on my iPad

    How do I view TV from my Panasonic DVD recorder, model DMR-BWT835 on my iPad?  I have set up the wireless connection on the recorder and I thought I had followed the instructions on the Panasonic website to make it happen but nothing shows on my iPad.  Thanks for any help.

    An iPad is designed to only be synced to one computer at a time.
    If they were purchased from iTunes then you should be able to copy them back from your iPad via File > Devices > Transfer Purchases
    If they aren't iTunes purchases and you haven't got a copy of them on a backup drive then there are some programs listed half-way down this page which can copy content back from a device : Recover your iTunes library from your iPod or iOS device.
    There is also this page for syncing to a new computer (it was written for iPhones, but it applies to iPads as well): Syncing to a "New" Computer or replacing a "crashed" Hard Drive
    Some of the steps on that page have changed slightly (it was written for a previous version of iTunes) :
    5, is now File > Devices > Transfer Purchases
    6, 'Reset Warnings' at the bottom of the phone's Summary tab in iTunes
    7, File > Devices > Back Up
    8, File > Devices > Restore from Backup (or Restore Backup button on the Summary tab)

  • PL/SQL  on delete cascade..   ( how  to view the child record deleted..?)

    Hai
    i have 70 tables integrated with foreign and child key constraints. i have on delete cascade for all the child tables. if i delete the parent table automatically child table record get deleted.
    Kindly tell me how can i check howmany child record has been deleted ..? how can i monitor this...?
    one thing i can do... i can make count of child table before and after...
    is there anyother way..?
    S

    Peter,
    I subscribe to the general consensus around trigger usage. Allthough I allways diffentiate between triggers that,
    - perform pl/sql with embedded DML (that is: delete, insert, update)
    versus triggers
    - that perform pl/sql with embedded queries only.
    The latter use of triggers is good (in my opinion), and most frequently used to enforce (non declarable) data integrity constraints.
    The former use of triggers is bad. Because it makes things happen automagically.
    Just google "asktom triggers are evil", you'll find statements such as:
    ~quote
    because things happen automagically
    because side effects are bad
    because explicit linear code is more maintainable then "happens as a by product of something in the background"
    magic should be avoided. Experience tells me this.
    ~quote
    And to me a CASCADE DELETE clause on a foreign key definition, is a TRIGGER. Allbeit not one for which you had to write CREATE TRIGGER statements, but one that you can declaratively introduce. And this trigger holds embedded DML, it is of the former case, and is therefor bad.
    You the designer of the application may be aware that you have your FK's as cascade delete. But your successor(s) might not be aware of this when they write maintenance code to delete Orders. They might be expecting the database to throw them an FK violation message when they try to delete an Order that still has Lines attached to it.
    Everybody knows the effect of an INSERT, a DELETE, an UPDATE. But the moment you've introduced triggers with embedded DML in them, the effect of these three well known primitive SQL statements suddenly becomes unknown. With triggers you can create any effect for any of these three primitives, that you want. And more often than not other people maintaining your codebase later on in the future, do not realize these side effects happen, because they didn't check the presence of any triggers, nor investigated the side effects caused by them.
    Btw. for exactly the same reasoning I consider use of DEFAULT-clause on table columns, or even use of (fixed length) CHAR datatype, evil also. Again they are in effect declarative triggers with side effects. Allbeit that their side effects usually are less worse than those caused by handwritten triggers with embedded DML.
    Toon

  • How to gather recorded meetings in MeetingPlace 8.5

    Hello,
    I am running Meetingplace 8.5 as a standablone on premise auto conferencing server.  I do not have integration with webex nor do I have a Meetingplace scheduling server on site.
    Is it possible for users to gather recorded meetings in this senario?  All the documentation points to logging into a web page to gather the recordings but they do not provide the URL and I am not sure if it is refering to the web scheduling server or on the meetingplace server itself. 
    Thanks for the help. 

    Hello,
    In MeetingPlace 8.5 audio only solution without a MP Web scheduling server, it is not possible to collect recordings.
    When  you do an audio recording of the meeting in MP8.5, recording in the  form of av_rec.mp4 file is created and stored under conference directory  on MP Application server (e.g. /mpx-record/conf/000001.dir/016719/av_rec.mp4).
    If  you have MP Web server, this recording file is pulled from MP  Application server after the meeting has ended, and based on the  configuration it gets converted to either .mp3, .wav, or .wmf and the  link is created and posted on the web page (a special tool built in the  code of MP Web server is converting this mp4 file to the desired  format).
    If  you don't have MP Web server, the recording stays on the MP App server  for a couple of days when it gets purged from the server. There is no  interface to retreive these recordings (like via Telephone User  Interface, or a link on the MP App server).
    Even  if you copied the recording file manually from MP App server using  WinSCP or a similar tool (you would need to identify the Unique  Conference ID of your meeting in decimal value in order to find the  appropriate directory for the meeting under /mpx-record/conf section),  it still wouldn't be in a playable form and you would need to figure out  the way to convert it.
    I  personally tried to figure that one out, but without success.
    I hope this helps.
    -Dejan

  • HT4522 how do I view and verify that the back up files are in fact recorded on Airport?

    How do I view and verify the files on Airport do in fact exist?

    Click the Time Machine "clock" icon on the dock
    Wait a few minutes for the Time Machine "Star Wars" interface to load
    Use the scale at the right of the screen to select a recent backup time or date
    Navigate to find the file(s) that you want to see
    Click Cancel to return to the present time

  • Auto record meeting/ class and view/ share the recording.

    I have integrated my adobe connect account to be able to trigger the meeting from moodle. Any idea how I can get my students to have a recording of their class session once it is completed and view the recording inside of their moodle account? We are an eLearning company.
    Preferably, the meeting/ class session should be auto recorded without the users (teacher or student) having to manually record the session. Our account only has one host enabled. Both student and teacher will enter the class as presenters (classes are 1 on 1).
    Apparently only hosts have the ability to record the class and it would be abit of a bother if I would have to enter every class and record it. Any auto record class/meeting session function?
    Thanks in advance

    was wondering if anyone could help. I need to set this up on my connect
    server. need to force connect to auto record all meetings/ shared meetings.
    this is help file for connect 8 but i'm using latest version of connect.
    any assistance much appreciated.
    http://help.adobe.com/en_US/connect/8.0/webservices/WS8d7bb3e8da6fb92f73b3823d121e63182fe- 8000_SP1.html
    feature-id
    Description
    An attribute describing a feature that either users can use or things that
    can occur during a meeting. Use feature-id with the meeting-feature-update
    <http://help.adobe.com/en_US/connect/8.0/webservices/WS5b3ccc516d4fbf351e63e3d11a171ddf77-7 fc5_SP1.html>
    action.
    For more information on the pods that can be enabled or disabled, see
    the *Adobe
    Connect User Guide*.
    Values
    Value
    Description of functionality when value is enabled
    fid-archive
    Lets a host start and stop the recording of a meeting. Disabling this
    setting means that recording settings are not controllable by the host.
    To set Connect to automatically record all meetings, you must both disable
    fid-archive and enable fid-archive-force.
    fid-archive-force
    Sets all meetings to be recorded upon the start of the meeting. Recorded
    meetings appear in Adobe Connect Central.
    On Thu, Jun 19, 2014 at 1:45 AM, Kristian C <[email protected]>

  • How can i get all the records from three tables(not common records)

    Hi
    I have four base tables at R/3-Side. And i need to extract them from R/3-Side.
    And i dont have any standard extractor for these tables .
    If i create a 'View' on top of these tables. Then it will give only commom records among the three tables.
    But i want all the records from three base tables (not only common).
    So how can i get the all records from three tables. please let me know
    kumar

    You can create separate 3 datasources for three tables and extract data to BW. There you can implement business login to build relation between this data.

Maybe you are looking for

  • Invalid parameter value Error while Extending PoReqDistributionsVO

    Hi, My Requirement is to restrict user from enetring certain values in a field in iProcurement Page based on some condition. The attribute on which I have to place the validation is CodeCombinationId and the VO name is PoReqDistributionsVO. So, I ext

  • In Bridge CS4 only icons

    In bridge SC4 I cannot see images in Raw or Dng. Bridge only shows icons. However I can open them and convert them to tif's and then they are visible in bridge Something wrong in Bridge??

  • How to read from a WD table to another WD table?

    Hi I need to read a WD table of multiple values and transfer in to different WD Table. I tried to get size of first table and could not move forward programmatically? Please help with some sample code. Thanks Praveen

  • Images in Blob Column..

    Hi I have a function that retrieves the blob column which has the image data. I cannot view this from Toad and get the value {hugeBLOB} when I query via Toad. I used it in a VB.Net app, but I'm unable to reterive the image there also. Can you please

  • Attaching IXOS invoice image (.tiff) in an email

    In Invoice approval process, Client is using function module ?SO_OBJECT_SEND? for sending emails to corresponding approvers. In this email they added one hyperlink which calls IXOS server for displaying scanned copy of an invoice. It has been observe