Forum Replies Created

Viewing 15 posts - 376 through 390 (of 622 total)

  • RE: Database without ANY primary keys

    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...

  • RE: Dumb Vocab Question about What This Type of Table is Called

    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...

  • RE: Circular reference

    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...

  • RE: Database without ANY primary keys

    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...

  • RE: Column data type I'd like to see in SQL Server 2014

    Create table Universe

    (

    SpaceTime VeryVeryVeryVeryVeryBigInt not null

    )

  • RE: Null instead of 0

    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...

  • RE: odd situation

    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...

  • RE: Cursor to Delete data

    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...

  • RE: odd situation

    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...

  • RE: Do columns have unique object IDs?

    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...

  • RE: Slow query due to IP address in statement with Microsoft SQL Server 2012

    or can you set it up as a passthru query and let the source server develop an execution plan

  • RE: Do columns have unique object IDs?

    Drat! 🙂

    I suspected that was the case. Looks like I'll be building it myself then.

  • RE: Check to see if multiple VALUES exsit in a table

    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...

  • RE: display order by houseno

    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)...

  • RE: Breaking 3NF to save a join - should I do it?

    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...

Viewing 15 posts - 376 through 390 (of 622 total)