Viewing 15 posts - 76 through 90 (of 154 total)
Maybe we are all trying to solve the wrong problem.
What are you trying to achieve?
More flexibility and the ability to change the workflow more easily?
A reduction in the number of...
December 30, 2010 at 3:26 pm
1. If you want manageable, extensible storage then this is what SANs are for. The one you must avoid like the plague is NAS as this will force all your...
December 29, 2010 at 8:07 pm
Option 2 seems to say "build a 4 disk RAID 1+0 array and then sub-divide into partitions"? If that is that correct then I would never recommend it!
I'll give you...
December 29, 2010 at 7:48 pm
I would suggest the answer is two..
Either you have mirrored two spindles two times and then striped the resulting array (RAID 1+0) is which case everything that happens to one...
December 29, 2010 at 7:36 pm
Taking into consideration All the above posts, what about the 3rd option.
SYSDATETIME()
Advantages: Returns a DATETIME2
Disadvantages: ?
Personally, I prefer GETDATE() because there is also GETUTCDATE(). I don't believe there is an...
December 29, 2010 at 7:30 pm
Collapse the structure to a single table and use a HIERARCHYID.
That way you can define a flexible heirarchy in this table and attach to specific points.
December 29, 2010 at 5:01 pm
OK - From what I've understood.
Each Status has a set of common columns, which might include who changed it to that status, when the change happened etc.
These common columns are...
December 29, 2010 at 4:57 pm
If you removed the surrogate keys on tables 2-6 you could make table 7 a list of the valid code combinations rather than the surrogate keys for the code. That...
December 29, 2010 at 4:40 pm
Type security - Using an SQL_VARIANT column means we get data and type.
I agree with your thoughts on sparse columns - you always need 1 more!
I'll take another look at...
December 23, 2010 at 8:43 pm
Any particular experience that leads you to this choice?
Of the 3, its my least favourite because
it offers no type security
its slow
Comments / Suggestions?!
December 23, 2010 at 3:58 pm
Hmm - But the problem is that I need to keep the db structure unchanged.
If it was about presenting data to the Business Logic layer then no problem but my...
December 23, 2010 at 3:42 pm
My thoughts exactly.
When you delete the contents of these tables, the space will be free within the database, and when you do the next iteration that space will get used...
December 16, 2010 at 7:17 pm
Problem is when i create single table(CombinationOf20Tables) on the base of joining, i required some extra table which help me to store the result into single table. after creation of...
December 15, 2010 at 2:48 pm
Yes, I prefer to have data in a Filegroup for Data, and leave the PRIMARY Filegroup for the system tables. It won't hurt you to do this.
My default db set...
December 15, 2010 at 2:03 am
If all you are doing is writing that data out to another file and you *always* want *every* column, then SELECT * would be fine.
If you can't categorically say that...
December 14, 2010 at 11:51 pm
Viewing 15 posts - 76 through 90 (of 154 total)