tbreffni

2,353
Reputation
304 views

Registered User

Name tbreffni
Member for 1 year
Seen 1 hour ago
Website
Location
Age
...
Nov
7
accepted Visual Studio 2008 + Sql 2008 best practices
Nov
4
answered .net WCF IIS Application, deployment
Nov
1
awarded  Famous Question
Oct
27
revised How to replace multiple different chars with white space?
corrected spelling and grammar in title
Oct
27
comment LINQ to SQL Cannot create database [Schema Permissions]
SQL Server Management Studio can script out an entire database. Right-click on a database, choose Tasks, and then choose "Generate Scripts". For more features you probably want to consider a commercial solution, such as SQL Compare red-gate.com/products/SQL_Compare/… .
Oct
26
answered How to use the PerformanceCounter to find the bandwidth used by my appication?
Oct
15
accepted Deployment of ADO.NET Data Service
Oct
14
answered SQL Server 2008 autocomplete for “TOP” keyword
Oct
14
answered How to provide custom code for InitializeComponent?
Oct
14
answered LINQ to SQL Cannot create database [Schema Permissions]
Oct
14
answered how to know speed of processor fan ?
Oct
13
revised Location of labels
Added tag, removed unneeded C# in title
Oct
13
answered Deployment of ADO.NET Data Service
Oct
13
answered bind structured arraylist to database.
Oct
12
answered What tools are available to test SQL statement performance?
Oct
12
revised Active Directory - how to retrieve all schema entries for a user
corrected spelling in title
Oct
12
revised Strange unhandled exception
corrected spelling
Oct
12
revised LINQ to SQL Cannot create database [Schema Permissions]
correct spelling
Oct
12
revised Implementing functionality/code directly in database system
fixed grammar, slightly reworded question
Oct
12
answered Where can one find free software icons / images?
Oct
12
answered Evaluate Expressions in Switch Statements in C#
Oct
12
answered Best Tools for Web Development!?
Oct
12
answered Visual Studio 2008 + Sql 2008 best practices
Oct
9
comment Difference between Is.NotNull and != null
Interesting...I suspect this is the reason it was created, although perhaps it shouldn't have been placed in the System namespace. Thanks for the insight.
Oct
9
awarded  Commentator
Oct
9
comment Difference between Is.NotNull and != null
Ah, you're right, it isn't part of the base class library, it's part of a custom external assembly we have here. The method was implemented in a class called "Is" in the System namespace, which led to believe it was part of the BCL. Thanks for your help!
Oct
9
asked Difference between Is.NotNull and != null
Sep
21
awarded  Notable Question
Sep
11
awarded  Nice Question
Aug
15
awarded  Popular Question
Aug
11
awarded  
Aug
8
awarded  Yearling
Jul
21
answered Can’t get updatable View in Linq and Sql 2005 to work.
Jul
20
answered .NET SqlClient Error Number Enum Type
Jul
20
comment SQL user-defined functions vs. stored procedure branching
It's up to you whether you make them functions or stored procedures. Just be aware that functions have a lot more restrictions on what they can do compared to stored procedures, for example you can't have update statements in them. See this article: msdn.microsoft.com/en-us/library/… for more details. It might be easier for you to just keep them as stored procedures.
Jul
20
comment SQL Server roles, schemas, users
See this article msdn.microsoft.com/en-us/library/… for more details. Specifically, "Objects created within a schema are owned by the owner of the schema, and have a NULL principal_id in sys.objects. Ownership of schema-contained objects can be transferred to any database-level principal, but the schema owner always retains CONTROL permission on objects within the schema." So it looks like an owner always has full control over the objects in a schema.
Jul
20
accepted SQL Server roles, schemas, users
Jul
20
answered SQL Server roles, schemas, users
Jul
20
answered SQL user-defined functions vs. stored procedure branching
Jul
20
answered How can I invoke a WCF operation without HTTP container?
Jul
17
awarded  Self-Learner
Jul
17
answered SQL 2008 deadlocks on simple delete
Jul
17
answered What is the most under-valued part of .NET?
Jul
17
answered Is there value in producing code so flexible that it will never need to be updated?
Jul
17
comment Is there value in producing code so flexible that it will never need to be updated?
You mentioned that "...they would prefer to ask around, "What is the correct field in Active Directory to use for the user's phone number?", and plug that into their respective apps". Does this mean that it for example the phone number field changed, multiple apps using your API would have to be updated to send the correct field name in, instead of just your API?
Jul
17
awarded  Popular Question
Jul
16
comment problem with selecting date from dropdownlist
Try modifying the above code to read: DateTime dateofjoining = new DateTime(DropDownListDay.SelectedValue, DropDownListMonth.SelectedValue, DropDownListYear.SelectedValue); . You could also try: DateTime dateofjoining = new DateTime(DropDownListDay.SelectedText, DropDownListMonth.SelectedText, DropDownListYear.SelectedText);
Jul
16
answered problem with selecting date from dropdownlist
Jul
16
awarded  Stellar Question
Jul
16
answered How to query a DataSet and iterate through the result?