Viewing 9 posts - 1 through 9 (of 9 total)
detecting duplicates is even more difficult than these other issues.
123 North Third
123 N. 3rd
123 North 3rd
123 N 3rd
123 N Third
123 North Third Ave
123 N. 3rd Ave
123 North 3rd Ave
123 N...
February 17, 2009 at 6:21 pm
You might consider de-normalizing, storing a current address in each table where it is needed, having a historical address table that could be shared by those entities (with a M:N,...
February 17, 2009 at 1:51 pm
Perhaps you could roll your 3 types of task into one table, then your timesheet records have only one parent. Create views that separate the 3 types of tasks...
February 17, 2009 at 1:28 pm
Not sure, it shoed both columns for me... paste your exact code here I bet you just copied mine wrong 🙂
for totals... read this
http://www.sqlserverandxml.com/2008/09/tsql-lab-4-how-to-add-total-line-to.html
December 5, 2008 at 1:05 pm
don't use a function? use a stored rpoc instead, tehn you can use dynamic sql execution? is that possible in your app?
December 5, 2008 at 10:26 am
josephptran2002 (12/4/2008)
How are you doing? you might say I'm very dumb on SQL. But I have to ask you straight question which relates to my project. I think without...
December 5, 2008 at 10:01 am
Joseph, for your first post's question, I would simply use a UNION
Select A
UNION
Select B
UNION
SELECT C
etc
you can use the date to string conversions mentioned in other posts...
December 5, 2008 at 9:38 am
I don't see where your "per user" criteria are coming from... how do you know that user1 sees clients starting with A and user2 those with B, etc...
Also do different...
December 5, 2008 at 9:30 am
I think in the long run you might be best off by creating simulators - small apps or scripts that produce transactions similar to production. Over time you could...
December 5, 2008 at 9:13 am
Viewing 9 posts - 1 through 9 (of 9 total)