Forum Replies Created

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

  • RE: query runs fine when used "IS NOT NULL" ,doesnt works when searched with a value

    Post the view definition.


    And then again, I might be wrong ...
    David Webb

  • RE: one or two entity?

    Yes, I'd have to agree with Paul. While the current set of attributes may be identical, they are drawn from different domains and I'd bet that there will be...


    And then again, I might be wrong ...
    David Webb

  • RE: Writing Nearly Codeless Apps: Part 2

    RAP does not really address the problems of DBAs, whose primary job is to maintain existing applications. RAP is about new application development, where someone has to decide exactly how...


    And then again, I might be wrong ...
    David Webb

  • RE: Just How Does SQL Server Define A Unique Index

    Yes, once a db is case sensitive, it's ALL case sensitive. I don't see a lot of case sensitve SQL Server installations in the wild.

    You should be able to...


    And then again, I might be wrong ...
    David Webb

  • RE: one or two entity?

    How is this any different from an 'employees' table with a 'gender' column recording 'm' or 'f'?

    Do x and y have behavioral or processing differences? All the...


    And then again, I might be wrong ...
    David Webb

  • RE: Writing Nearly Codeless Apps: Part 2

    Unfortunately in the real world these important things constitute only a small fraction of developers’ time, because most developers spend most of their time:

    reinventing data modeling (i.e. choosing from among...


    And then again, I might be wrong ...
    David Webb

  • RE: Just How Does SQL Server Define A Unique Index

    You can get the valid ones for 2008 by:

    select * from fn_helpcollations()


    And then again, I might be wrong ...
    David Webb

  • RE: Just How Does SQL Server Define A Unique Index

    This should be valid:

    SQL_Latin1_General_Cp1_CS_AS

    as an alternative, per:

    http://msdn.microsoft.com/en-us/library/ms180175(v=SQL.90).aspx

    Are you running 2008?


    And then again, I might be wrong ...
    David Webb

  • RE: Just How Does SQL Server Define A Unique Index

    The default collation in SQL Server is case insensitive. You need to change the collation of either the columns, the table, the database, or the server to a case...


    And then again, I might be wrong ...
    David Webb

  • RE: CPU from 1% to 100% for 8sec query on Prod. server only

    Post the execution plan for the query. Let's see where it's slowing down and that may give a hint as to why the performance varies. Are you running...


    And then again, I might be wrong ...
    David Webb

  • RE: Heirarchy for DBA career

    Some possible paths would be to either broaden his scope and move into an Architect position, or specialize and do consulting in a specific area like data security, performance tuning,...


    And then again, I might be wrong ...
    David Webb

  • RE: Writing Nearly Codeless Apps: Part 1

    In a typical development the schema design is done by a database guy who is obsessed with micro-optimization of individual tables. He fusses over minimizing table size and deciding things...


    And then again, I might be wrong ...
    David Webb

  • RE: error in data connectivity on server

    No one is going to travel to a site they don't know to pick up an unexplained error message. Get a screen shot and post it, or post the...


    And then again, I might be wrong ...
    David Webb

  • RE: BCP error

    It's telling you that the columns in the input are longer than your table columns. You may have to make the columns bigger, or the error may actually indicate...


    And then again, I might be wrong ...
    David Webb

  • RE: keywords in column names

    It may not like the "" because someone set QUOTED_IDENTIFIER ON. It's looking for an object name between the double quotes.


    And then again, I might be wrong ...
    David Webb

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