Viewing 15 posts - 16 through 30 (of 256 total)
I don't see how performance could be improved by using an application solution. SQL is already set-based as can insert, update, and delete anything from the Xml you send...
July 3, 2009 at 8:09 pm
Yes. I'm not sure what the best approach is (hence why we have this thread going). You may be able to put your database back to "latin" and...
June 16, 2009 at 6:12 am
Most applications attempt to do this by having a single "NVARCHAR" column for FirstName, LastName, etc. This post is just about storing that information in a more efficient manner....
June 15, 2009 at 3:26 am
About the whole row count issue. I know this isn't bullet proof but SQL is already tracking the row counts in every table. You don't need to create...
March 11, 2009 at 4:11 am
thierry.vandurme (1/6/2009)
January 6, 2009 at 7:05 am
Without going into too much detail, using configuration files in this manner is one of the basics and you can probably find a lot of help online or in the...
December 24, 2008 at 6:44 am
This is a very interesting technique. I am using CONTEXT_INFO to set the current "ClientContext" that is executing any Procedures from an Application. This allows me to track...
December 23, 2008 at 9:40 am
Well, yes, I also wish MS would have just allowed us to specify a culture code. There are two functions @@LANGID and @@LANGUAGE. These will show you what...
December 7, 2008 at 12:19 am
SET SESSIONCULTURE 'en-UK'
GO
SELECT * FROM Advertisement WHERE AdvertisementID = 1 AND @@CultureString == 'en-UK'
I'm not seeing these Functions in SQL anywhere...
December 5, 2008 at 6:09 am
If you're talking about "partial" classes, yes, I am aware of that. LINQ generates all the class definitions as "partial" classes so you can simply add extra files. ...
November 19, 2008 at 6:20 am
Just a word of warning. This all looks good at first, but you will find it largely unmaintainable in the future. Having to constantly regenerate "wrappers" for all...
November 18, 2008 at 4:11 am
LINQ does do this. There are 3 flavors of LINQ (LINQ to SQL, LINQ to Objects, and LINQ to Entities (i.e. for ADO.NET)). If you hook up SQL...
November 14, 2008 at 12:44 pm
First off, good job. I am starting to see this a lot, my company does something similar where they just make strongly-typed Stored Procedure classes. I've actually had...
November 13, 2008 at 5:24 pm
Thanks for the comments (love it Jeff). I agree that accounting would be a different scenario, heck, maybe even storing an OrderAdjustments table where you have an AdjustmentType (SalesTaxState,...
November 11, 2008 at 6:09 am
Lynn Pettis (11/10/2008)
Not all credits are negative. It depends if they are expenses, liabilities, or assests.
True, sorry, my Accounting knowledge is only so-so 🙂
November 10, 2008 at 10:57 am
Viewing 15 posts - 16 through 30 (of 256 total)