Viewing 15 posts - 376 through 390 (of 622 total)
Happy Christmas Joe 😛
Which reminds me.
Q) Why do Assembly programmers get Xmas and Halloween confused
A) Because OCT31 = DEC25
Anyway, JC wouldn't touch Progress with a barge...
December 12, 2013 at 2:12 pm
Front end developers love EAV tables because they can quickly built an interface that allows users to configure the properties of an entity (think a website that sells books and...
December 11, 2013 at 10:33 am
Thats not a circular reference.
tblGroupUser is a cross-ref or bridge table to normalise the Many:Many relationship betwen users and groups. It allows one user to belong to many groups...
December 11, 2013 at 10:29 am
Are you talking about application performance or reporting performance.
If it is reporting, then I woudl be tempted to replicate the database and create reporting indexes. In a large system...
December 11, 2013 at 10:25 am
Create table Universe
(
SpaceTime VeryVeryVeryVeryVeryBigInt not null
)
December 11, 2013 at 10:00 am
It will do. A blank column inicates an unknown value - the equivalent of NULL. One of the problems when dealing with Excel is that the cell value...
December 11, 2013 at 9:50 am
Oops!
I should know better than to make throwaway statements like that when Jeff or Gill are lurking 😀
I will have to find some time to set it up on my...
December 11, 2013 at 9:30 am
I'm With Sean!
To get the table into a managable state, copy the records you want to keep then truncate the real table and then either drop it and rename the...
December 9, 2013 at 9:00 am
Or synonyms if you might need to switch schemas between development and production, or for different clients (e.g. data segregation is done by schema rather than by database - I've...
December 9, 2013 at 8:49 am
That, my friend, would be a whole different thread 😀
My data sources are spread across a number of different technologies (SQL2000, 2005,2008, Oracle 11i, 12, Progress 9, 10, as well...
December 9, 2013 at 8:38 am
or can you set it up as a passthru query and let the source server develop an execution plan
December 9, 2013 at 6:28 am
Drat! 🙂
I suspected that was the case. Looks like I'll be building it myself then.
December 9, 2013 at 6:26 am
Yup, Its a standard LEFT JOIN problem.
give me all the records in the starting table (list of email addresses supplied) and the matching record in the right hand table (stored...
December 9, 2013 at 4:36 am
The short answer is that you should re think your database.
From the question it is clear that the field is storing at least three separate entities:
Sector (3-13) - varchar
PropertyID (414)...
December 9, 2013 at 4:13 am
Thanks guys,
The Entity.NaturalKey will definately be indexed in some form as it will be displayed on most granular level reports. As to performance, I am not sure because I havn't...
November 18, 2013 at 9:54 am
Viewing 15 posts - 376 through 390 (of 622 total)