Questions tagged [extended-properties]

101 questions
1
vote
1 answer

How to get "Web page" contact field through Exchange EWS/EWS managed api?

I'm trying to extract contacts from exchange using EWS managed api. I've managed to find Property tags of almost all the fields through this link. Still there are some fields I'm not able to get. The main one is the field "Web Page". Is this field…
1
vote
1 answer

Select extended properties of Roles

I'd like to get extended properties for database's roles. I can get a list of all extended properties for users with this command: use db; SELECT * FROM fn_listextendedproperty (null, 'user', null, default, default, default, default) But I'm not…
Akbari
  • 2,369
  • 7
  • 45
  • 85
1
vote
1 answer

How to get Extended Properties using Sharepoint 2010/2013 Client OM

The code below uses SP Server OM and I would like to know how to retrieve task extended properties using the Client OM. list = web.Lists["Tasks"]; SPQuery tasksQuery = new SPQuery(); tasksQuery.Query = @"
Hamaz.S
  • 25
  • 1
  • 8
1
vote
1 answer

How to access extended properties set with EWS when accessing the item in VSTO for Outlook

The scenario is this: have an app which exports to Outlook and then have an Outlook add in which sends data to your app. It is easy enough to send info either way and then in Outlook to create an Outlook item with a user property or in the app to…
Marc K
  • 392
  • 3
  • 11
0
votes
1 answer

EWS ExtendedPropertyDefinition search filter no longer filtering

For literally over a decade we have had C# code that talks to Exchange via EWS. Virtually all our clients have migrated to Office 365, and the our code was operating perfectly fine on O365 via EWS, until recently. Our software processes emails that…
Mark Henderson
  • 2,586
  • 1
  • 33
  • 44
0
votes
0 answers

Idera ER-Studio: How to use "User Defined Properties" on Columns and Tables?

How to define "User Defined Properties" that can show up on the Metadata Export, in Idera ER-Studio? We are trying to include properties such as Business-Key identifier, SCD identifiers and a few other similar stuff. While exporting Model Metadata…
0
votes
1 answer

ExtendedPropertyDefinition declaration for EmailMessage in Powershell throws exception

since I got to know that ExtendedProperties have its limit for a specific mailbox in the EWS cloud I am trying to switch up my code to have only one ExtendedProperty and just change its value each time I am assigning the property to an e-mail…
0
votes
1 answer

Easier way to retrieve (all) extended properties for an event?

As a followup to How to retrieve extended properties for calendar event (by name)? and How to retrieve extended properties of type datetime? : I actually have to retrieve 4 custom property values (string, datetime, 2 integers). The URL then becomes…
0
votes
2 answers

How to retrieve extended properties of type datetime?

As a followup to How to retrieve extended properties for calendar event (by name)?: I can retrieve integer and string values with the singleValueExtendedProperties expansion, but how to retrieve dateTime values? This fails ({{ }} are Postman…
0
votes
2 answers

How to retrieve extended properties for calendar event (by name)?

I have an Exchange calendar populated though Exchanges Web Services (EWS) UpdateItem SOAP calls containing: (Example here for an integer TTID and a TTSyncID string field)
0
votes
1 answer

How to search partition schema, filegroup and text image at once in SQL Server?

The following query was performed. CREATE TABLE [dbo].[TB_PARTITION_SCHEMA] ( [COL] [INT], [COL2] [INT] ) ON [PartitionSchema] ([COL]) GO EXEC sp_addextendedproperty @name=N'MS_Description', @value=N'partition_schema_comment', …
user13746660
0
votes
1 answer

SQL script for updating SQL Extended Properties with a Cursor

I have a task of updating the tables in a database which are missing Extended Properties for 'Category' and 'Description'. The script below is what I am currently trying to implement, but it doesn't function as I'd hoped it would. The first part of…
0
votes
0 answers

StgOpenStorageEx only reads .doc files. Delphi 2007

I am trying to acquire file properties such as Title, Subject, Author, Copyright, Comments and the various file dates. Other properties would be nice, but not required. My searches all seem to lead to variations of the code I found here as well as…
0
votes
1 answer

SQL sp_addextendedproperty issues

Good afternoon, I have a table called assurance.SelfService_Patients with around 23 columns, 22 of which I want to add metadata too, in order to explain what each column is. At the moment I am struggling with the syntax. I have attempted the…
AndrewK
  • 27
  • 6
0
votes
1 answer

Object reference not set to an instance of an object. (SqlMgmt) while updating extended properties with SSMS wizard

While updating (Click on OK button, or Script on SSMS Wizard page), SSMS got Error: Object reference not set to an instance of an object. (SqlMgmt) Although there is no problem to do that action with system procedure (EXEC…