Querying Operational (Not DW) Database For Active Incidents

I sure hope I am asking this in the correct forum...  Before I get started a little bit of background is needed...
We (my company) are mostly happy with SCSM but the biggest request we hear about is that there is no easy way for technicians to see their Active/Pending tickets when out at locations.  We know about web analyst portals offered by 3rd parties such as
GridPro, Cireson, et al. however the funding (we are in public education) for this has never been realized and the first request to get shot down.  For some reason I wondered if it would be possible to query the operational database myself for a list
of incidents to appear and for some reason I decided to try it.  My knowledge of the inner workings of the SCSM databases (both operational and DW) are severely lacking but after 3 hours of looking around, Googling, and brute-forcing through it I have
the following with the hopes of a free analyst portal/view...
SELECT inc.Id_9A505725_E2F2_447F_271B_9B9F4F0D190C  AS ID
    , inc.Title_9691DD10_7211_C835_E3E7_6B38AF8B8104 AS Title
    , inc.Description_59B77FD5_FE0E_D2B5_D541_0EBBD1EC9A2B AS Description
    , inc.CreatedDate_6258638D_B885_AB3C_E316_D00782B8F688 AS CreatedDate
    , statusdisp.DisplayName AS IncidentStatus
    , AffectedUser.DisplayName AS AffectedUser
    , AssignedToUser.DisplayName AS AssignedToUser
    , classdisp.DisplayName AS Classification
    , locdisp.DisplayName AS Location
    , incExt.RoomNumber_24150BC7_9958_313D_8DD1_3CE2A0A68165 AS RoomNumber
    , incExt.AltSchedule_B1A8258C_1048_4D6E_AEB9_910811B94326 AS AltSchedule
FROM MT_System$WorkItem$Incident (NOLOCK) inc
INNER JOIN EnumType e ON 
inc.Status_785407A9_729D_3A74_A383_575DB0CD50ED = e.EnumTypeId
INNER JOIN DisplayStringView statusdisp ON e.EnumTypeName = statusdisp.ElementName
AND statusdisp.LanguageCode='ENU'
AND statusdisp.DisplayName!='Closed'
AND statusdisp.DisplayName!='Resolved'
INNER JOIN [ServiceManager].[dbo].[Relationship] AssignedToUserRel ON
[BaseManagedEntityId] = AssignedToUserRel.[SourceEntityId]
AND AssignedToUserRel.[RelationshipTypeId] = '15E577A3-6BF9-6713-4EAC-BA5A5B7C4722'
INNER JOIN [ServiceManager].[dbo].[MT_System$Domain$User] AssignedToUser ON
AssignedToUserRel.[TargetEntityId] = AssignedToUser.[BaseManagedEntityId]
INNER JOIN [ServiceManager].[dbo].[Relationship] AffectedUserRel ON
inc.[BaseManagedEntityId] = AffectedUserRel.[SourceEntityId]
AND AffectedUserRel.[RelationshipTypeId] = 'DFF9BE66-38B0-B6D6-6144-A412A3EBD4CE'
INNER JOIN [ServiceManager].[dbo].[MT_System$Domain$User] AffectedUser ON
AffectedUserRel.[TargetEntityId] = AffectedUser.[BaseManagedEntityId]
INNER JOIN MT_ClassExtension_685ca40e_4af9_4bca_93e1_5397c69cc946 incExt ON
inc.BaseManagedEntityId = incExt.BaseManagedEntityId
INNER JOIN DisplayStringView locdisp ON incExt.Locations_30F8DDC7_9552_A890_D1FC_6FC14F5B45AF = locdisp.LTStringId
AND locdisp.LanguageCode='ENU'
INNER JOIN EnumType enumClass ON 
inc.Classification_00B528BF_FB8F_2ED4_2434_5DF2966EA5FA = enumClass.EnumTypeId
INNER JOIN DisplayStringView classdisp ON enumClass.EnumTypeName = classdisp.ElementName
AND classdisp.LanguageCode='ENU'
where AssignedToUser.DisplayName='somename'
ORDER BY locdisp.DisplayName, ID ASC
This query is run against the ServiceManager database.
(We extended the Incident class so that we could get detauls from users such as Location (56+ physical locations), Room Number, and Alternate Schedule (for users who are not full time at one location).
This query works on my end and assuming the AssignedToUser and AffectedUser are not NULL properly display the list of incidents for a given technician (or all technicians) however there is one major flaw.  If a ticket gets assigned to Technician A and
gets reassigned at some point to Technician B (or reassigned again to Technician C) there are duplicate records coming up for each AssignedTo user.  If you search for all technicians the duplicates show but if you filter by individual technicians then
each tech has a version of the incident appear in their list.
Does anyone out there know of a way to query for the latest 'version' of an incident so that only the most recent AssignedTo is listed.
Note: Feel free to use this query as a building block for your own potential portal or use, although obviously if you figure it out please share!

first off, welcome :) second..not bad for a beginner. The operational database is basically a no-man's land where dangerous monsters roam. And it's dark. ;)
third: a warning..you shouldn't query the database directly. But..we all do it anyway. :)
I recommend using "with (NOLOCK)" on _all_ tables, not just the incident table. The Operational Database is supposed to be hands off..even simple "select" queries can interfere with the data access service and the hundreds of queries
that run automatically against this database. So, to be safe..always use "with (nolock)" on every table that you query.
If you want unassigned incidents to show up, replace your inner joins with left outer joins. That's a SQL thing..you want to display all incidents whether they have related users or not. So, left outer join.
The reason you're seeing multiple assigned-to users is because "deleted" relationships between objects aren't truly deleted for about 2 days. So, in your join criteria, simply add "AffectedUserRel.IsDeleted=0". This will filter out any
"deleted" relationships from your result set. Obviously you'll have to add that filter for each relationship table instance in your query.
Lastly: I strongly recommend you use the SDK instead of querying the database directly. There's a learning curve, but it's far safer and it's actually supported :)

Similar Messages

  • Getting sync operation status as Error for Activity Object Eloqua Bulk 2.0

    As mentioned in doumentation https://docs.oracle.com/cloud/latest/marketingcs_gs/OMCBB/index.html#D_Reference/activity-fields.htm%3FTocPath%3DReference%7C_____6
    I have created an Import Definition and later I tried to push data for it, but for sync operation it gave sync status as error.
    Why this import definition returned error for sync operation?
    Below is the sample snippet for import definition I created for Activity object.
       "syncActions":null,
       "isSyncTriggeredOnImport":"true",
       "name":"External Activity 03March",
       "updateRule":"always",
       "secondsToRetainData":"3600",
       "fields":{
          "C_EmailAddress":"{{Activity.Field(EmailAddress)}}",
          "CampaignID":"{{Activity.Campaign.Id}}",
          "AssetName":"{{Activity.Asset.Name}}",
          "AssetType":"{{Activity.Asset.Type}}",
          "AssetDate":"{{Activity.CreatedAt}}",
          "ActivityType":"{{Activity.Type}}"
    here is sample data that I posted for this import:
          "C_EmailAddress":"[email protected]",
          "CampaignID":32,
          "AssetName":"Tradeshow",
          "AssetType":"Tradeshow",
          "AssetDate":"2014-05-12",
          "ActivityType":"Visited Booth"
          "C_EmailAddress":"[email protected]",
          "CampaignID":32,
          "AssetName":"Tradeshow",
          "AssetType":"Tradeshow",
          "AssetDate":"2014-05-12",
          "ActivityType":"Visited Booth"
    Please find sync logs in attachment.
    Thanks

    As mentioned in doumentation https://docs.oracle.com/cloud/latest/marketingcs_gs/OMCBB/index.html#D_Reference/activity-fields.htm%3FTocPath%3DReference%7C_____6
    I have created an Import Definition and later I tried to push data for it, but for sync operation it gave sync status as error.
    Why this import definition returned error for sync operation?
    Below is the sample snippet for import definition I created for Activity object.
       "syncActions":null,
       "isSyncTriggeredOnImport":"true",
       "name":"External Activity 03March",
       "updateRule":"always",
       "secondsToRetainData":"3600",
       "fields":{
          "C_EmailAddress":"{{Activity.Field(EmailAddress)}}",
          "CampaignID":"{{Activity.Campaign.Id}}",
          "AssetName":"{{Activity.Asset.Name}}",
          "AssetType":"{{Activity.Asset.Type}}",
          "AssetDate":"{{Activity.CreatedAt}}",
          "ActivityType":"{{Activity.Type}}"
    here is sample data that I posted for this import:
          "C_EmailAddress":"[email protected]",
          "CampaignID":32,
          "AssetName":"Tradeshow",
          "AssetType":"Tradeshow",
          "AssetDate":"2014-05-12",
          "ActivityType":"Visited Booth"
          "C_EmailAddress":"[email protected]",
          "CampaignID":32,
          "AssetName":"Tradeshow",
          "AssetType":"Tradeshow",
          "AssetDate":"2014-05-12",
          "ActivityType":"Visited Booth"
    Please find sync logs in attachment.
    Thanks

  • View for active Incidents related to WI (Problem) with status (Active) works but can't be changed.

    Hi,
    I wanted to create a view of Incidents which are linked to a Problem (any problem).
    I did a quick test using the Incident (advanced) class, selected to display Incidents with status Active and [Work Item] Is Related To Work Item and status for Problem with the status Active.
    At this first test I didn't bother to select any specific columns to display but just went with the pre-selected ( Description, Display Name, Display Name) and it worked. 
    I got a list of expected Incidents in the view but having the Description column made it quite useless.
    So, when I try to select the columns I find useful it will not update and it returns a No items found message instead.
    (image removed due to limitations)
    It is of course possible to group by one of the Display Name fields and collapse to get a more workable view but it still lacks a lot of good information. One would like to include ID, title, Created date,
    date modified, Display Name for Affected User and Assigned to user, and a few others.
    I was just a bit stumped as to why this fails when changing the columns on a view that obviously is possible to create.
    Thanks in advance,
    Daniel

    Consider using the Advanced View Editor( or
    the free edition), since it has much more robust criteria and column editing capabilities. 

  • PM order: operation short text mandatory for active operations only?

    Hi experts,
    a quick question regarding operation short texts in the PM order:
    I would like to make short texts in PM order operations mandatory.
    When I set the short text to "mandatory" in the "operation list customizing" field selection (Tcode OIOPL), all of the operations in the order shown in the operation list (standard 0010 to 0170) get the short text field marked as mandatory.
    This means that a short text is expected even for operations which are not used/active, which is a pain if I only want to use operations 0010 and 0020...
    Does anyone know of an OSS note that fixes this?
    Or is there some other customizing that needs to be done?
    Thanks a lot!
    Andreas

    Hi,
    There is no fix for this as its not an error as such. The screen processing does not distinguish between active and non-active operation lines. So if short text is mandatory it will be required on every operation line. OIOPL is not suitable for marking fields mandatory for that reason - ok for hiding fields or making display only.
    Consider the exit as suggested.
    -Paul

  • Pages 09 is installed. But on the received e-mail was not a serielnr for activating pages so i cannot save or print any document.

    I have downloaded Pages 09 on the i-Mac with the Lion version.
    In the e-mail for confirming was mentioned an Ordenr....... and a long nr  of 12 figures......
    After making a document,it was not possible to save or print out.
    I get a sjabloon with the text that I have to activate iWork first.
    Next click gives me the sjabloon  that i have to buy the complete  version iWork!!!!!
    or to fill in the serialnr of Pages mentioned in the sended e-mail from apple store.
    I have tried that long nr (in case that this is the productserialnr....) but no any result.
    Apple-store employees were not able to help me.
    Where can I find the serialnr...as nr in the email was not working.
    We have also tried with apple employee to remove Pages of the computer and empty the  trash
    for complety removig,but....... we still keep the message  that Pages is  INSTALLED.
    So long we have this message we cannot re-downloadin program Pages according the apple employee!!!!
    Apple is not able to solve this problem.
    In mean time I have used my back up and also controlled the e-mail.
    Pleas help me
    Thank you
    Martin Duynstee
    [email protected]

    This might be simple but it works well for me.
    1. 
    Right click on the tool bar in IE8 and uncheck adobe PDF to disable.  Click yes when it ask if you are sure.
    2. 
    Open Adobe
    READER located in the start menu.
    3. 
    Click on Edit and then on Preferences.
    4. 
    Select the "General" category.
    5. 
    Click on "Select default PDF handler"
    6. 
    Adobe Reader should be already selected. Change it to reader if it is not.
    7. 
    Click on "Apply" and except changes.
    8. 
    Restart the computer and you are done.
    Now you can open and save PDF's from IE8.  Once you save it, you can right click and "open with" Acrobat if you choose. 
    Be careful to not make Acrobat the default or you have to start over.
    You can still create PDF's from docs, scans, and picture like before.  You might think this is a work around but it really isn't. 
    Some forms that are available on the internet can't be opened by Acrobat for security reasons.
    Good luck!      P.S. I am not an IT tech but I play one on TV.

  • Create a report for active incidents and the time they are open in hours

    If possible prefferebly in excel with default cubes since our users are allready used to working with
    Thank You
    Moran Gibori

    i'm going to refer you to my response to
    This Thread. let me know if you need additional information. 

  • Is there any oracle database for windows 7 64 bit

    hi,
    can any one tell me that is there any oracle database for windows 7 Home Basic 64 bit ( version 6.1).
    I have downloaded several versions oracle databases but none have worked.
    Thanks

    Hi;
    The answer is No as mention before. Please use certified platform which is mention in installation guide:
    Operating System Oracle Database for 32-bit Windows is supported on the following operating systems:
    Windows Server 2003 - all editions
    Windows Server 2003 R2 - all editions
    Windows XP Professional
    Windows Vista - Business, Enterprise, and Ultimate editions
    Windows Server 2008 - Standard, Enterprise, Datacenter, Web, and Foundation editions. The Server Core option is not supported.
    Note: Check My Oracle Support (formerly OracleMetaLink) for more information about Hyper-V support.
    Windows 7 - Professional, Enterprise, and Ultimate editions
    Windows Multilingual User Interface Pack is supported.
    Check:
    http://download.oracle.com/docs/cd/E11882_01/install.112/e16773/reqs.htm#CHDHGGFE
    Regard
    Helios

  • Select query does not return rows

    Hi all,
    The following query does not returning rows even though values are there in table.
    Kindly let me know why it is creating problem.
    thanks, P Prakash
    /* Formatted on 2011/05/11 16:44 (Formatter Plus v4.8.8) */
    SELECT pr.pa_rqst_sid, ptr.sbmtr_trnsctn_idntfr, ptr.athrztn_infrmtn,
    DECODE (ou.org_unit_name,
    'PA - MDCH', (SELECT property_value
    FROM hipaa_system_defaults
    WHERE property_name = 'RECEIVER_ID_1_PA'),
    'PA - MPRO', (SELECT property_value
    FROM hipaa_system_defaults
    WHERE property_name = 'RECEIVER_ID_2_PA'),
    'PA - DEFAULT', (SELECT property_value
    FROM hipaa_system_defaults
    WHERE property_name = 'RECEIVER_ID_1_PA'),
    NULL
    ) AS intrchng_sndr_idntfr,
    ptr.intrchng_sndr_idntfr AS intrchng_rcvr_idntfr, ptr.usg_indctr,
    ptr.intrchng_sndr_idntfr AS applctn_rcvr_code,
    ptr.trnsctn_set_cntrl_nmbr AS trnsctn_set_cntrl_nmbr,
    ptr.athrztn_infrmtn_qlfr AS athrztn_infrmtn_qlfr,
    ptr.scrty_infrmtn_qlfr AS scrty_infrmtn_qlfr,
    ptr.scrty_infrmtn AS scrty_infrmtn,
    ptr.intrchng_sndr_idntfr_qlfr AS intrchng_sndr_idntfr_qlfr,
    ptr.intrchng_rcvr_idntfr_qlfr AS intrchng_rcvr_idntfr_qlfr,
    ptr.intrchng_cntrl_stndrds_idntfr AS intrchng_cntrl_stndrds_idntfr,
    ptr.intrchng_cntrl_vrsn_nmbr AS intrchng_cntrl_vrsn_nmbr,
    ptr.intrchng_cntrl_nmbr AS intrchng_cntrl_nmbr,
    ptr.acknwldgmnt_rqstd_indctr AS acknwldgmnt_rqstd_indctr,
    ptr.cmpnt_elmnt_sprtr AS cmpnt_elmnt_sprtr,
    ptr.fnctnl_idntfr_code AS fnctnl_idntfr_code,
    ptr.grp_cntrl_nmbr AS grp_cntrl_nmbr,
    ptr.rspnsbl_agncy_code AS rspnsbl_agncy_code,
    ptr.vrsn_rls_indstry_idntfr_code AS vrsn_rls_indstry_idntfr_code
    FROM pa_request pr, pa_transaction_request ptr, org_unit ou
    WHERE ptr.pa_trnsctn_rqst_sid = pr.pa_trnsctn_rqst_sid
    AND pr.org_unit_sid = ou.org_unit_sid
    AND pr.oprtnl_flag = 'A'
    AND ptr.oprtnl_flag = 'A'
    AND ou.oprtnl_flag = 'A'
    AND pr.pa_mode_type_lkpcd = 'BT'
    AND (pr.status_cid = 86 OR pr.status_cid IN
    (20, 70, 30, 80, 25, 101, 96)
    AND pr.pa_rqst_sid = 75006271
    ORDER BY pr.pa_rqst_sid;
    the query is not giving result for this particular request sid.75006271 is present in table.

    833560 wrote:
    Hi all,
    The following query does not returning rows even though values are there in table.
    Kindly let me know why it is creating problem.
    thanks, P Prakash
    /* Formatted on 2011/05/11 16:44 (Formatter Plus v4.8.8) */
    SELECT pr.pa_rqst_sid, ptr.sbmtr_trnsctn_idntfr, ptr.athrztn_infrmtn,
    DECODE (ou.org_unit_name,
    'PA - MDCH', (SELECT property_value
    FROM hipaa_system_defaults
    WHERE property_name = 'RECEIVER_ID_1_PA'),
    'PA - MPRO', (SELECT property_value
    FROM hipaa_system_defaults
    WHERE property_name = 'RECEIVER_ID_2_PA'),
    'PA - DEFAULT', (SELECT property_value
    FROM hipaa_system_defaults
    WHERE property_name = 'RECEIVER_ID_1_PA'),
    NULL
    ) AS intrchng_sndr_idntfr,
    ptr.intrchng_sndr_idntfr AS intrchng_rcvr_idntfr, ptr.usg_indctr,
    ptr.intrchng_sndr_idntfr AS applctn_rcvr_code,
    ptr.trnsctn_set_cntrl_nmbr AS trnsctn_set_cntrl_nmbr,
    ptr.athrztn_infrmtn_qlfr AS athrztn_infrmtn_qlfr,
    ptr.scrty_infrmtn_qlfr AS scrty_infrmtn_qlfr,
    ptr.scrty_infrmtn AS scrty_infrmtn,
    ptr.intrchng_sndr_idntfr_qlfr AS intrchng_sndr_idntfr_qlfr,
    ptr.intrchng_rcvr_idntfr_qlfr AS intrchng_rcvr_idntfr_qlfr,
    ptr.intrchng_cntrl_stndrds_idntfr AS intrchng_cntrl_stndrds_idntfr,
    ptr.intrchng_cntrl_vrsn_nmbr AS intrchng_cntrl_vrsn_nmbr,
    ptr.intrchng_cntrl_nmbr AS intrchng_cntrl_nmbr,
    ptr.acknwldgmnt_rqstd_indctr AS acknwldgmnt_rqstd_indctr,
    ptr.cmpnt_elmnt_sprtr AS cmpnt_elmnt_sprtr,
    ptr.fnctnl_idntfr_code AS fnctnl_idntfr_code,
    ptr.grp_cntrl_nmbr AS grp_cntrl_nmbr,
    ptr.rspnsbl_agncy_code AS rspnsbl_agncy_code,
    ptr.vrsn_rls_indstry_idntfr_code AS vrsn_rls_indstry_idntfr_code
    FROM pa_request pr, pa_transaction_request ptr, org_unit ou
    WHERE ptr.pa_trnsctn_rqst_sid = pr.pa_trnsctn_rqst_sid
    AND pr.org_unit_sid = ou.org_unit_sid
    AND pr.oprtnl_flag = 'A'
    AND ptr.oprtnl_flag = 'A'
    AND ou.oprtnl_flag = 'A'
    AND pr.pa_mode_type_lkpcd = 'BT'
    AND (pr.status_cid = 86 OR pr.status_cid IN
    (20, 70, 30, 80, 25, 101, 96)
    AND pr.pa_rqst_sid = 75006271
    ORDER BY pr.pa_rqst_sid;
    Hi,
    Its very difficult to analyse the query without any data being provided. So I suggest you to debug the above query by keeping basic join condition intact and comment out all the other where conditions for initial run.
    FROM pa_request pr, pa_transaction_request ptr, org_unit ou
    WHERE ptr.pa_trnsctn_rqst_sid = pr.pa_trnsctn_rqst_sid
    --AND pr.org_unit_sid = ou.org_unit_sid
    --AND pr.oprtnl_flag = 'A'
    --AND ptr.oprtnl_flag = 'A'
    --AND ou.oprtnl_flag = 'A'
    --AND pr.pa_mode_type_lkpcd = 'BT'
    --AND (pr.status_cid = 86 OR pr.status_cid IN
    (20, 70, 30, 80, 25, 101, 96)
    --AND pr.pa_rqst_sid = 75006271If if you have given join conditions proper and if data exists ,you can see set of rows displayed.
    Next step is to keep on uncommenting each of the where condition
    AND pr.oprtnl_flag = 'A'Like this you 'll come to the condition which does not match your requirement
    Hope this helps
    Regards,
    Achyut

  • My I message says waiting for activation

    My iMessage says that it is waiting for activation
    How do I make it work and not say waiting for activation?

    It wont say waiting for activation once it activates.  However it could be stuck doing this.
    I would try the basic stuff (like toggle iMessage, sign out of iTunes app store, hard reset by pressing both power and home button, reset network settings, try activating iMessage on wifi and cell data to out rule a network issue)
    You may end up having to back up your iphone to iTunes. Then,  go to settings <general<reset and "erase all content and settings" (this does put your phone back to factory settings) Just so that you can go through the set up assistant again, and sign back into your apple id for imessage and face time.
    You will want to choose "set up as new" when going through the set up assisant, then once all done and iMessage is active, you'll then restore from your iTunes back up.

  • My mac mini is running slow.  Bought it in 2009.  Activity monitor shows nothing running that should not be.  Someone suggested it might be my operating system?  Check for software updates, and I am current.  Suggestions?

    My mac mini is running slow.  Bought it in 2009.  Activity monitor shows nothing running that should not be.  Someone suggested it might be my operating system?  Check for software updates, and I am current.  Suggestions?

    Open Activity Monitor, Show:>All Processes, sort on CPU%, see if anything using too much CPU% when this happens, click on Memory tab, do you have many Pageouts?
    Open Console in Utilities & see if there are any clues or repeating messages when this happens.
    Check the S.M.A.R.T. status of the drive in Disk Utilty by highlighting the Drive & looking at the bottom of the window.

  • Query Operator "IS" is not working good for object type "String"

    Hi,
    I have a problem with advanced search. When the object type is String, and I want to search directly value (for exemple 'a') i have returned all value starts with 'a', even though I set Query Operator to "IS"
    When I use Query operator "setByUser", and then set property to "IS", query behaviour is correct.
    Behaviour example for operator "IS":
    values: a, ab, abc
    searching: 'a' --> expected results: a results: a, ab, abc
    Any sugestions??
    Sorry for my English
    Regards,
    Wojciech Mularczyk

    Syed,
    Only under advanced search. The operator used for quick search is defined through two properties in JhsAdvancedSearch bean class:
    private String defaultStringOperator = "startsWith";
    private String defaultNonStringOperator = "is";
    So, if you have a String attribute which holds numbers and you want to apply the "is" operator to this attribute, you can change the default value of "defaultStringOperator" by creating a custom template for searchBean.vm, and add the following property:
    <managed-property>
    <property-name>defaultStringOperator </property-name>
    <value>is</value>
    </managed-property>
    Note hat you can already apply this technique in the current release.
    Steven Davelaar,
    JHeadstart Team.

  • The merge process could not allocate memory for an operation; your system may be running low on virtual memory. Restart the Merge Agent.

    I encountered this problem on our SQL2012 and I have tried different scenarios (see below) to no avail. I have decided to give up and check if someone here has encountered this and resolved it. 
    One thing I know, it's not a memory issue. Both servers we're using has lots of memory to spare and we monitor the memory as the replication goes through it's steps. 
    I hope someone can help me on this. Thanks!
    The Error:
    The merge process could not allocate memory for an operation; your system may be running low on virtual memory. Restart the Merge Agent.
    Our Scenario
    We're using SQL Server 2012 SP1. All subscriptions are pull based.
    We're using direct Merge Replication (not FTP or web sync)
    We already have 10 active replications with larger databases. Only 1 has this issue.
    Database size is less than 5 GB
    Rebuilding the publisher is not an option.
    What have I tried?
    There is no memory problem --- we have lots to spare
    I have tried re-initialization of the database. Same problem.
    I tried deleting the database and reinitializing it. Same problem
    New snapshot. Same problem.
    I tried changing the subscriber server but still same issue. 
    MCP, MCSD, MCDBA (ANXA)

    Here is the result for the sp_configure on our subscriber. We're doing a pull on the server with the issue.
    name
    minimum
    maximum
    config_value
    run_value
    max server memory (MB)
    128
    2147483647
    2147483647
    2147483647
    In addition, I made a comparison between the working servers and the one with the issue -- there seems to be a difference in the service pack. Publisher has none but the subscriber is operating on SP1. But still strange as only 1 database is affected. 
    MCP, MCSD, MCDBA (ANXA)

  • Need Help to query Lync Database for User Information

    Need Help to Query the lync database to retrieve below user information.
    1. SIP Address of the registered user
            2. Phone Number configured to the particular account.
            3. IP Address
           4. Last Logged in time.
    I am trying to pull the above information from rtc database for all the registered users. Please let me know if this is possible and it would be great if you can throw some light on what tables to look for the data. Thank You.

    Hi,
    For SIP address and Phone number you can check RTC database.
    IP Address:
    You can refer to the link below to query IP address: 
    http://h30499.www3.hp.com/t5/Business-Service-Management-BAC/Monitoring-Lync-with-the-User-Registrations-Viewer-Free-NMC-tool/ba-p/5961497#.UtOU43mIrwo
    Note: Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there.
    Please make sure that you completely understand the risk before retrieving any suggestions from the above link.
    Last Logged in time:
    You can refer to the link below:
    http://blogs.technet.com/b/dodeitte/archive/2011/05/11/how-to-get-the-last-time-a-user-registered-with-a-front-end.aspx
    Best Regards,
    Eason Huang
    Eason Huang
    TechNet Community Support

  • I had the developer preview for IOS 6 on my phone, and just got a message telling me that my operating system is no longer active. How do I get my phone activated again?

    I had the developer preview for IOS 6 on my phone, and just got a message telling me that my operating system is no longer active. How do I get my phone activated again?
    I had the developer preview installed. Never had to update to the release version of the OS. Now, the preview has expired, and I cannot use my phone because my iTunes reads my OS as being current, but my iPhone cannot active. Any ideas on how to fix this issue?

    If I Google for Michael Superczynski, first match tells "Michael Superczynski's Profile : Apple Support Communities". It in fact does a lot of work there even if not paid.
    And yes we do not have disagreement about "official apple developers". Problem is that Apple screwed our devices because we are "official apple developers" and did effort to stop us getting proper help. I unbricked my ipad and iphone thanks to unofficial help. Thank you who wrote this unofficial help and "no thanks" for apple for ruining my access to my devices. My mistake was assuming that "update" button on my devices works. It did not because it always told "Your device has latest IOS6 installed" until it bricked yesterday.
    If Apple does not want to listen us, continue do delete post, blame us installing your software and yes we stop buying your devices and developing for them.
      Tonu

  • Getting " Not enough memory for the operation error " in BOE

    Hi,
    We are using BOE 11.0.
    we try to schedule a new report with multiple database logins for testing in BOE. When we run the report we are getting error like "Not enough memory for the operation error"
    The same report has been executed successfully when we run using Crystal reports developer. The report is fectching less than 10K records from all the databases together.
    Please let me know which is causing the issue and also let me know is there any limit in the number of databases connecting for a single report.
    many thanks in advance for all your help.
    Cheers,
    Suri ;-)

    Hi Sarthan,
    Sorry. I'm new to BOE. We know only scheduling the reports creating folders etc. :-)
    I've seen one parameter "Maximum Cache Size Allowed (KBytes)" and the value for this parameter is 5000.
    If we change it to a big number whether we can solve the issue ? Please suggest.
    Cheers,
    Suri ;-)

Maybe you are looking for

  • Unable to see file system on touchpad over USB from Windows 7

    When I plug in my HP touchpad running 3.0.4 via USB to my PC running Windows 7 the device appears in device manager, but I don't see a new drive appear with a given drive letter under my computer. If I look at device manager in windows, I see two web

  • Geospatial Data in Oracle and Crystal Reports

    Does Crystal Reports support the "polygon" datatype found in Oracle 10g? I need to be able to output the coordinates found in this datatype in plain text (or plain numbers as it where) on a report using Crystal Reports. Thanks, TC

  • How best to print a color photo in black and white

    I use the Black and White adjustment on a series of colour photo's I've taken.  However when I go to print the photo's, colour still comes out in the print.  Anyone know what I'm doing wrong?

  • Display TV HDMI cable

    Hi all!Well i have connected my macbook pro with hdmi cable to my TV Samsung LED 26 but the screen does fit properly!Is there any solution or i have to run it i a clamshell mode to fit properly!please help me!Thanks!

  • Imac crash when burning DVD

    Hi, Fairly new to macs, but have been using imovie and idvd for my videos. I'm using imovie to import video from my camcorder via firewire. Create a project in imovie - edit what i need and then export. I then open idvd and create project and import