HAdes
|
Registered User
|
|
|
Nov 12 |
awarded | ● Notable Question |
|
Nov 4 |
revised |
How do you set permissions on a schema that has objects accessing other schemas? update/resolution |
|
Nov 2 |
comment |
How do you set permissions on a schema that has objects accessing other schemas? Yeah I was trying to keep the question simple and to the point, but you're right I am confused!! Even though i'm using db roles, I still can't understand why I have to then give the db role access to the other schemas, cos this gives them access to everything and then I may aswell just have given them access directly to that other schema. Man I'm screwed. |
|
Nov 2 |
comment |
How do you set permissions on a schema that has objects accessing other schemas? Good point regarding my developer ignorance. Just so happens I have access to all schemas so lucky me. So I guess you're basically saying either to give them object by object access to the 'other' schema, or complete access via the db role. I just can't understnad why access isn't implicitly resolved within the object, considering I've given them access to that object. |
|
Nov 2 |
comment |
How do you set permissions on a schema that has objects accessing other schemas? Yes this is what I have done now, however it is still bypassing the schema permissions. i.e. I now have a user in a db role that now accesses 3 schemas, just because of this scenario. This sounds dangerous to me, because now either they have access to everything in the other schemas or I need to manually set object by object permissions on the 'other' schema. What i really want is, if I give user A access to an Object B, that should be it, regardless of what Object B does (i.e. inserts to another schemas object). |
|
Nov 2 |
comment |
How do you set permissions on a schema that has objects accessing other schemas? Thanks for the reply, however this is basically bypassing the schema permissioning, but a long winded way of doing it. Plus rather than creating sps as wrappers for views, I could instead give the user direct access to the view in the 'other' schema. All of this though, is still bypassing the use of schemas, which is what I don't want to do. Maybe the answer is that "YOU SHOULDN'T BE ACCESSING ONE SCHEMA FROM ANOTHER", but I'm not sure this is correct. |
|
Nov 2 |
comment |
How do you set permissions on a schema that has objects accessing other schemas? I created the user in via management studio, i.e. not via a script does it matter? |
|
Nov 2 |
asked | How do you set permissions on a schema that has objects accessing other schemas? |
|
Nov 2 |
revised |
In Sql Server 2005, how do I setup permissions using schemas and db roles? edited tags |
|
Nov 2 |
asked | In Sql Server 2005, how do I setup permissions using schemas and db roles? |
|
Oct 20 |
awarded | ● Popular Question |
|
Oct 19 |
comment |
In LinqToSql, is it possible to have a custom Insert method that Auto-Syncs the primary key? That's what i already have (pretty much), although when I assign a value to the entity.Id property, for example, it causes a change notification as it thinks the ID is now modified (just so happens to be from zero/null to my new value) |
|
Oct 16 |
asked | In LinqToSql, is it possible to have a custom Insert method that Auto-Syncs the primary key? |
|
Sep 24 |
comment |
In LinqToSql how do you enable change tracking on an entity’s custom property? yes that's effectively what i have already, but the property MyEntity in my first entity doesn't seem to be tracking changes to any of it's fields. |
|
Sep 24 |
comment |
In LinqToSql how do you enable change tracking on an entity’s custom property? That would probably work, however the property i've added is of a custom type i.e. MyEntity not string or int |
|
Sep 24 |
asked | In LinqToSql how do you enable change tracking on an entity’s custom property? |
|
Sep 21 |
comment |
How do you validate a clr property after it has been updated instead of before when implementing IDataErrorInfo? Good idea, but I'm using LinqToSql as the Model and by default the Property changed notification is after the value is set. |
|
Sep 17 |
awarded | ● Yearling |
|
Sep 16 |
asked | How do you validate a clr property after it has been updated instead of before when implementing IDataErrorInfo? |
|
Sep 14 |
asked | In the ORM designer, why don’t the server objects get refreshed properly with new changes? |
|
Sep 11 |
comment |
C# - List<T> or IList<T> Regarding your last statement about using IEnumerable instead of IList. This is not always recommended, take WPF for example which will just create a wrapper IList object so will have an impact of perf - msdn.microsoft.com/en-us/library/… |
|
Sep 10 |
asked | In a WPF combobox is it wise to use a string type value as the SelectedValue and SelectedValuePath? |
|
Sep 9 |
answered | How do you handle a ComboBox SelectionChanged in MVVM? |
|
Sep 8 |
comment |
What’s the point in setting up dependency properties, when PropertyChangedEventHandler does the job? ok thanks, i'll have a play around |
|
Sep 8 |
comment |
What’s the point in setting up dependency properties, when PropertyChangedEventHandler does the job? I think I get it now. So are they only used in custom user controls or can they be used anywhere else? thanks |
|
Sep 7 |
revised |
What’s the point in setting up dependency properties, when PropertyChangedEventHandler does the job? added 4 characters in body |
|
Sep 7 |
asked | What’s the point in setting up dependency properties, when PropertyChangedEventHandler does the job? |
|
Sep 7 |
asked | Can I legally take my work’s Visual Studio 2008 CD and install it at home? |
|
Aug 21 |
comment |
In WPF how do you access an object defined in Window.xaml from a nested user control ? Great this works well, however is it the only way? It seems a bit of a hack as what if I want to find an element that is a parent of an element of the same type. i.e. <DockPanel x:Name="TheOneIWant"> <DockPanel> |
|
Aug 21 |
comment |
In a WPF tabControl how can I dynamically select a tab page from an object’s type? You need to post a question rather than an answer to another question. Plus you might want to reword it so others can get a better understanding of your issue. |
|
Aug 21 |
comment |
Should I design a table with a primary key of varchar or int? The performance hit on the joining approach sounds extremely minimal and I'd imagine you wouldn't notice any impact unless your tables were absolutely massive, right? If this is the case, then surely good design with int ID's is better no? |
|
Aug 20 |
revised |
Should I design a table with a primary key of varchar or int? added max |
|
Aug 20 |
comment |
Should I design a table with a primary key of varchar or int? Your right the 2nd query looks cleaner. Is this really what matters? Couldn't you use ID's' and still keep this clean by using views? Are you sure there are performance gains with the second approach, as other posts have said the opposite. cheers. |
|
Aug 19 |
comment |
Should I design a table with a primary key of varchar or int? @Dan - I don't buy into this 'readability' argument. isn't that what views are for? |
|
Aug 19 |
comment |
Should I design a table with a primary key of varchar or int? @Andrew - you get my drift, yes I mean the maximum which is fixed. Sorry if i offended you. |
|
Aug 19 |
comment |
Should I design a table with a primary key of varchar or int? And your reasons for not using varchar? same as mine or other reasons? |
|
Aug 19 |
asked | Should I design a table with a primary key of varchar or int? |
|
Aug 18 |
awarded | ● Popular Question |
|
Aug 13 |
revised |
Why is there a difference in error handling clr procedures in sql server 2005? not a duplicate, the error is not in the clr procedure |
|
Aug 13 |
asked | Why is there a difference in error handling clr procedures in sql server 2005? |
|
Aug 13 |
accepted | In Sharepoint, how do you setup a column for ‘person or group’ with a default value? |
|
Aug 13 |
answered | In Sharepoint, how do you setup a column for ‘person or group’ with a default value? |
|
Aug 10 |
asked | In Sharepoint, how do you setup a column for ‘person or group’ with a default value? |
|
Aug 10 |
comment |
How do you properly test the view in MVVM? Chris, without a UI test how can you be sure that any changes you make don't screw up any existing functionality. i.e. removing the command on a button causing it to no longer save. |
|
Aug 10 |
comment |
How do you properly test the view in MVVM? That looks good, but it doesn't answer my question. I'm specifically after a way of testing things like bindings, commands etc. Just simply running the UI and checking the end results is not good enough as I'm not interested in testing the VM or the Model, just the views themselves. The VM or Model could change in future, but I shouldn't have to to also change my view tests. |
|
Aug 10 |
comment |
In a WPF tabControl how can I dynamically select a tab page from an object’s type? ok, so how would that look as I still want the same look and feel as tab pages, i.e user can still select other tabs if necessary. sorry i'm new and never used datatemplates yet. thanks |
|
Aug 10 |
asked | How do you properly test the view in MVVM? |
|
Aug 10 |
comment |
In a WPF tabControl how can I dynamically select a tab page from an object’s type? Yes pretty much. Specifically the user will change the object by selecting a different item from a combobox |
|
Aug 10 |
asked | In a WPF tabControl how can I dynamically select a tab page from an object’s type? |
|
Aug 4 |
asked | In WPF how do you access an object defined in Window.xaml from a nested user control ? |
