Forum Replies Created

Viewing 15 posts - 1,336 through 1,350 (of 7,429 total)

  • RE: Phone Interview Questions

    Well if you told them to review and brought them in for another interview then at that point I would assume they really don't care and probably don't have a...

  • RE: help with rewriting query (performance optimization)

    Barring me having botched order here since I don't have anything to test against this should be pretty colse to what you are after.

    SELECT

     ST.student_id,

     ST.last_name + ',  ' + ST.first_name...

  • RE: Schema without foreign keys

    It is all a matter of preference sometimes and lack of formal disipline and knowledge, but the point of FKeys is to enforce referential integrity at the table level.

    I myself...

  • RE: Data Modeling Question

    First off from your naming convention should make table names singular.

    So instead do something like this

    Office -- I would change from BrokerOffice because even if other positions are in here...

  • RE: selecting columns by its index.

    No you cannot do

    SELECT 1 FROM tblX

    You have to specify the column name.

    You can however use the previously descirbed to determine the column in an SP or in your...

  • RE: Tricky String Update

    One silly question thou is why? Why do you basically want to add data that is denormalized from what the data and tack it into the current table adding extra...

  • RE: Are clustered index columns actually usable in non-clustered indexes?

    Just WorkOrder, you will also find that if the only value to return is TransactionDate based on choice of looking up a workorder that the index still acts as a...

  • RE: Index limitation in SQL Server

    Interesting enough here is another post on this last year http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=9&messageid=19701 and they seem to hint and my thoughts as well.

  • RE: Index limitation in SQL Server

    FIrst off 249 is a lot of indexes to have aon any one given table and the processing needed to manage these on inserts, updates and deletes would be extrodinary.

    However...

  • RE: PLEASE HELP!!!

    It just isn't allowed, not sure if it has something to do with the pointer mechanism or something to do with memory management? When your data returns via a recordset...

  • RE: Web UI Standards

    Micrsofot's MSDN library has a few things, try the Netscape develoeprs pages and I thin the W3c site has a lot on it. But overall the only things I have...

  • RE: Few concepts and questions

    There is no reason for anyone to get bent out of shape. The question I have is what is the poitn of this discussion?

  • RE: Intermittent Date Format Changes

    Have them convert instead to YYYYMMDD instead as the ISO standard will not fail. If there is nothing on the SQL end to ensure it understands 01/02/2005 is Feb 1st...

  • RE: Tough Query

    I am using this example as previously posted

    Create table dates( date datetime)

    insert into dates values('2005-01-01')

    insert into dates values('2005-01-03')

    insert into dates values('2005-01-04')

    insert into dates values('2005-01-07')

    insert into dates values('2005-01-08')

    insert into dates values('2005-01-09')

    insert...

  • RE: Order by Increases the number of records returned

    What was your query?

Viewing 15 posts - 1,336 through 1,350 (of 7,429 total)