search for: sales_group

Displaying 2 results from an estimated 2 matches for "sales_group".

Did you mean: alesgroup
2004 Jul 21
0
Why this error? Unable to find Domain Master Browser
...Liebman Jul 21 06:54:34 localhost nmbd[1937]: [2004/07/21 06:54:34, 0] nmbd/nmbd_browsesync.c:find_domain_master_name_query_fail(350) Jul 21 06:54:34 localhost nmbd[1937]: find_domain_master_name_query_fail: Jul 21 06:54:34 localhost nmbd[1937]: Unable to find the Domain Master Browser name SALES_GROUP<1b> for the workgroup SALES_GROUP. Jul 21 06:54:34 localhost nmbd[1937]: Unable to sync browse lists in this workgroup. Jul 21 06:54:34 localhost nmbd[1937]: [2004/07/21 06:54:34, 0] nmbd/nmbd_browsesync.c:find_domain_master_name_query_fail(350) Jul 21 06:54:34 localhost nmbd[1937]: fi...
2004 Nov 19
18
SingleTableInheritance Considered Harmful
...e database schema what fields are part of the main class, and what fields are part of the subclass. Further, it lets you enforce integrity restrictions on the subclass. For example, if every Client must have a sales group assigned to it, you can set that column to NOT NULL and make it reference the sales_group table, which you can’t do if you put that column in the superclass table. This ensures that you can’t insert invalid Clients into your database. So now that you’ve vowed never to use Single Table Inheritance again, you’re freed up to use inheritance in Ruby for inheriting behaviour, rather than st...