Questions tagged [extended-properties]

101 questions
4
votes
2 answers

SQL Azure Friendly Database Versioning Idea

I have a number of identical SQL Azure databases for like clients that need to have their versions tracked. SQL Azure in November of 2014 does not support extended properties as far as I know, if it did I could do something with extended properties…
Snowy
  • 5,942
  • 19
  • 65
  • 119
3
votes
2 answers

Creating extended property using EWS and access it from Outlook Add-in

I am currently working on EWS to have some integration of our company application with Exchange 2010. I am using EWS to create appoinment to Exchange 2010 and it works fine; but recently I tried to add some custom/extended property when creating…
3
votes
1 answer

How to get missing "Frame height" and "Frame width" properties of a video file in C# using Shell32 (Windows 10)?

I'm trying to determine the resolution of video files using Shell32 in C#, but the properties return empty strings, although Windows shell displays the information just fine. Please note that I cannot incorporate any 3rd party libraries for this…
Gildon
  • 51
  • 6
3
votes
1 answer

How can I retrieve column descriptions from an access database in C#?

I am trying to retrieve column descriptions for MS Access columns using C# (the text entered by the user in the table designer to describe the purpose of a column). How does one go about this? I thought maybe ExtendedProperties in the Column would…
col
  • 33
  • 4
3
votes
0 answers

How to query a view's column's extended properties from the underlying source table?

I am looking for a way to query the 'MS_Description' extended property values of table columns that are returned in a view, not the extended property values on the view's columns itself. I can get the view schema (How to list the source table name…
Jay Cummins
  • 1,039
  • 2
  • 14
  • 31
3
votes
1 answer

Entity Framework Core write MSSQL Server Extended Properties

Is it possible to create the MSSQL Server specific extended properties via Fluent-API or DataAnnotation for a Table / Schema? I would like to include my documentation into the sql server tables to satisfy our DBA. Kind Regards
Mario
  • 978
  • 2
  • 11
  • 31
3
votes
1 answer

querying extended File Properties using WMI

Is there a WMI namespace and a class that can be used to obtain the extended properties of a file, such as Owner, Author, Title, Subject, Category, Comments? please suggest.
user57555
  • 183
  • 4
  • 17
3
votes
1 answer

Google Data API: what is the limit of Extended Properties?

Is there any limit on number of properties and value length in Extended Properties of Google Data API (in particular Calendar API)?
Muxa
  • 5,563
  • 6
  • 46
  • 56
3
votes
2 answers

Select Database names and extended properties in SQL Server

I have three databases, starting with "MD_" that I have added in SQL Server 2012. Each of them has an extended property NAME = "DESCRIPTION" What I like to have returned is a result set of the database names and the "DESCRIPTION" value. Selecting…
Hank
  • 2,456
  • 3
  • 35
  • 83
3
votes
1 answer

Grabbing extended properties from SQL Server into DataTable

I have a view called PersonOverview which has a bunch of columns; it's a totally normal view, nothing special about it. I added an extended property called FlexGridHide with a value of 1 to the DatenbereichCD column of that view using. EXEC…
marc_s
  • 732,580
  • 175
  • 1,330
  • 1,459
2
votes
1 answer

SQL Server extended properties and management studio

Hi I have a sql server 2000 db and i added some extended properties to this db. Then i installed sql server 2008 rc2 and management studio. The problem when i want to open sql server 2008 db extended properties with management studio i just click…
AlaaL
  • 333
  • 9
  • 28
2
votes
1 answer

Trigger on extended properties? SQL SERVER

Does SQL Server allow triggers on extended properties, table level or column level? If not, is there anything like a trigger that can detect an 'add' or 'update' on extended properties and execute a stored procedure automatically? Thank you!
Eleanor
  • 2,647
  • 5
  • 18
  • 30
2
votes
1 answer

EWS SetExtendedProperty issue

I'm trying to update an existing email with a new property but I can't get it working.. i'm testing it by adding a custom property with a time stamp string in it.. When i fetch the item in after this has run I can't see any extended properties on…
zombiecode
  • 353
  • 1
  • 11
2
votes
1 answer

Exchange Error on Calendar item update :- At least one recipient isn't valid

This is the code for accessing my outlook calendar items, change their subjects, add some extended property and update it self. But I am getting an error as At least one recipient isn't valid when I'm trying to update the item. I believe that…
user4295135
2
votes
2 answers

How to use extended properties with the Google Calendar php api

I have been struggling with the php api for Google Calendar for weeks now. I have already managed to add and read events with the api and now I'm trying to get Extended Properies to work. I have tried two different ways of adding them to my…