vote up 0 vote down star

Hi all, .NET/MSSQL Server Question:

I use a System.Data.SqlClient.SqlDataAdapter to connect to a database and read (.Fill) a datatable from a view in the database (select * from v_coolview). The problem is that the view consists of multiple tables (of course) and the resulting DataTable has typically a primary key set (Datatable.PrimaryKey) that consists of the wrong column(s).

As the automatic behaviour/algorithms can not just guess the correct PK for the results of a view, i want to specify it.

How can i do this?

flag

1 Answer

vote up 0 vote down

I'm not a .NET guy, but I think you need to define the Primary Key of the datatable first (see http://msdn.microsoft.com/en-us/library/z24kefs8(VS.80).aspx) and then fill the table WITHOUT specifying MissingSchemaAction.AddWithKey

link|flag
Unfortunatly this is not possible, because i need to read the schema fully from the database. the method should work with any view, so it needs to determine the datatable itself. and this is where the trouble come in. – unknown (google) Oct 8 at 7:31
Well, this is really outside the realm of my knowledge; I'm more of a database guy. We used to be able to trick Access into guessing a priamry key by specifying a Unique Index on an indexed view. You may want to try that and see. – Stuart Ainsworth Oct 8 at 18:45
a possible solution, but with some negative side effects: Influences the basic table (disallows inserting data so that view is illegal), and can not applied to views that rely on other views. – unknown (google) Oct 15 at 13:35

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.