Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
3k views

Can you explain the use of sys.sp_addextendedproperty in the following code?

What's going on in the following code after the View is created? Can you give me any thoughts or path to follow? This code is taken from here. /****** Object: View [dbo].[vProductImages] Script ...
2
votes
2answers
90 views

How do I set Outlook extended properties on an email in C#?

I have currently written code to send an email in C# using the usual SMTPClient and MailMessage objects. My new requirement is that the email being sent should have "permissions" set as if the user ...
2
votes
2answers
183 views

Where are extended properties stored in SQL Server?

Where are extended properties stored in SQL Server? Are they stored in the database containing the object it was added to, or are they stored separately and bound to the local machine somehow. For ...
2
votes
1answer
143 views

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 ...
2
votes
1answer
307 views

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 ...
2
votes
1answer
259 views

Extended Properties not in Visual Studio DB Projects?

Maybe it's me, hopefully I am missing something. I added some Extended Properties to tables and columns in my MSSQL 2008 database. In Visual Studio 2010 I created a new database project, ran a ...
2
votes
3answers
1k views

Extract SQL Column Extended Properties From LINQ in C#

i have an SQL table with extended properties on each column. Is there a way to access these from LINQ in c# using Linq2SQL?
2
votes
1answer
596 views

Recommend a tool to manage Extended Properties in SQL server 2005

Server Management Studio tends to be a bit un-intuitive when it comes to managing Extended Properties, so can anyone recommend a decent tool that improves the situation. One thing I would like to do ...
1
vote
1answer
681 views

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 ...
1
vote
1answer
156 views

Edit SQL Extended Properties in SharePoint 2010

How can I edit extended properties of a table in SharePoint 2010? So far, I'm thinking there's nothing 'out-the-box' that does this. So, I'm assuming this means that I will have to make a custom ...
1
vote
1answer
451 views

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.
0
votes
1answer
118 views

Select Extended Property from SQL Server tables

I am writing a simple CMS for a client's database. There are 12 tables and they need to manage all of the data in 4 of them. I set up a dynamic data project (Linq-to-SQL as that's what I'm most ...
0
votes
2answers
67 views

SMO doesn't retrieve extended properties for index

I'm trying to use SQL Server Management Objects (SMO) to retrieve an extended property on an index, but the retrieved SMO object has an empty ExtentedProperties collection. (The index is on a table.) ...
0
votes
0answers
193 views

Retrieving extended property value/id - Google Calendar

I am adding an event into Google Calendar and associating it with an unique id using extended properties of Google Calendar. I want to display the specific event along with its corresponding extended ...
0
votes
4answers
156 views

How do I map the id in sys.extended_properties to an object name

When we codegen our CRUD stored procs, we add an extended property that indicates the table they are based on. I want to be able to interrogate sys.extended_properties to get a list of procs that ...
0
votes
2answers
557 views

DataColumn.ExtendedProperties Data to GridView

What is the best way for me to access extended properties of a DataColumn on rowDataBound and apply a certain class and tool-tip if the error key exists? protected void gridView_rowDataBound(object ...
0
votes
1answer
419 views

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)?
0
votes
1answer
186 views

SQL Server Extended Property MS_SubdatasheetName

Our application uses a SQL Server back-end with many stored procedures. Recently, while trying to fix an unrelated problem, we scripted a stored procedure to an ALTER statement to a SQL window to try ...
0
votes
1answer
301 views

How to get rid of extended table properties in SQL Server 2000?

I'm re-casting a question I asked earlier now that I have an idea of the cause of the problem I'm seeing. What I have: Tables in a DB on SQL Server 2000. I view/edit the tables with Access 2007, ...