Viewing 15 posts - 106 through 120 (of 208 total)
I get the feeling that you're not sure what are you going into.
As I mentioned, it's like shift from procedural programming to OOP. You build several layers.
For example in windows...
April 22, 2008 at 11:02 am
Seems like nobody is able or willing to share some hard experience. What was your decision/rationale with your boss?
April 22, 2008 at 1:57 am
The fundamental problem is that between your query (top or max) and your insert, at least one other user can do the same, so you end up with duplicates.
If you...
April 21, 2008 at 11:45 pm
GSquared (4/21/2008)
April 21, 2008 at 2:07 pm
The OP wrote a vague question. If he/she doesn't take the effort to clear doubts, why do you keep guessing?
April 21, 2008 at 4:48 am
Bill Geake (4/21/2008)
1) Any fault on a user device means a full diagnosis effort; anything...
April 21, 2008 at 3:06 am
You use Max(primary_key) to get the next value for insert?
Usually not a good idea. Instead use autoincrement identity type column:
create table X (ID integer identity primary key, data varchar(254))
--you omit...
April 21, 2008 at 2:00 am
Check what?
Existence of columns? data? integrity? statistics? relations? or...?
April 21, 2008 at 1:32 am
Depending on data and queries, an indexed view could be a perfect solution.
April 21, 2008 at 1:26 am
I tend to agree. If you're a network admin and manage all desktops, people stop using their brains. If you leave them freedom, they will make mistakes, even very stupid,...
April 21, 2008 at 1:03 am
Thanks for all responses. This fact (or common misconception) surprises me.
Pretty useful script, alzdba.
April 20, 2008 at 3:38 pm
No, not without specific questions.
I could write a book about this and still not add something you haven't thought of.
ORM is excellent for models that don't fit well into matrices...
April 15, 2008 at 9:34 am
It all depends on requirements, database model and frontend tool.
If you're porting an existing project to ORM, you should first create low level objects that match database objects and implement...
April 15, 2008 at 7:28 am
Based on one case?
It doesn't matter dba or developer. The person matters and there are a lot of different kinds in both baskets. Also, there are many people that are...
April 15, 2008 at 6:44 am
Derek Dongray (4/15/2008)
April 15, 2008 at 5:51 am
Viewing 15 posts - 106 through 120 (of 208 total)