Viewing 15 posts - 166 through 180 (of 275 total)
"One size fits all" could work if it applies in both directions. We are currently in the process of replacing a bespoke system with a package. The bespoke system allows...
April 6, 2018 at 7:07 am
I agree with the use of stored procedures for all the reasons mentioned in the article and, because I was on the standards committee, managed to get this included in...
March 16, 2018 at 8:11 am
As you now know the application is hitting a timeout, you could set the timeout on the SQL command to a higher value than the default (30 seconds). In C#...
March 2, 2018 at 5:35 am
November 20, 2017 at 9:15 am
From what I remember (it's been a while), C# treats all SQL date datatypes as its own DateTime type and you have to specify the display format in the data...
November 1, 2017 at 10:19 am
I'm doing a major implementation of cross-platform changes this evening - tempting fate?
October 13, 2017 at 7:11 am
Depending on the product used for the presentation layer, you may find the column names will be prettified automatically. We use DevExpress and it separates the words in a CamelCase...
September 28, 2017 at 1:37 am
September 28, 2017 at 1:03 am
As an aside, I'm pretty sure you won't want the amount to be FLOAT as this will not give exact results in calculations.
September 26, 2017 at 2:14 am
One other thing to be aware of is that EXCEPT eliminates duplicates.
September 11, 2017 at 7:43 am
You were asking how to do something and I was suggesting some ways of making it work. I don't see how that is belittling.
August 24, 2017 at 10:18 am
I don't think using the transaction name to determine which action to take is the right model. Your application already knows whether the user intends to insert, update or delete...
August 24, 2017 at 7:50 am
In your database, create a user-defined table type that matches the columns in "myorder". Your stored procedure can then specify a parameter that uses this table type instead of one...
July 21, 2017 at 9:01 am
Not an explanation of your problem, but in our warehouse we tend to drop indexes then truncate/load then recreate the indexes. It is generally a lot quicker on low-spec servers...
June 1, 2017 at 7:03 am
Regarding your 2nd question "should I worry about it", I'd say it's definitely worth giving them sensible names if you have copies of the database for development, QA, etc. and...
May 22, 2017 at 7:22 am
Viewing 15 posts - 166 through 180 (of 275 total)