Forum Replies Created

Viewing 15 posts - 49,291 through 49,305 (of 49,571 total)

  • RE: Which RSS News Feed Aggegator do you use?

    I use SharpReader (http://www.sharpreader.net/index.html) It's a standalone app. It has occational problems with the corperate firewall/proxy, but nothing serious.

  • RE: Database Performance Issue

    Please post this in the performance forum, rather than here. This forum is just for discussions of the question of the day.

    There could be a thousand reasons for slow performance -...

  • RE: Select from Multiple Tables

    That sound like a pretty insane table design. What's wrong with storing all the data in one table with a date column? 

  • RE: Certification strategy

    From what I read on the MS training site, the only upgrade exam will be to upgrade MCDBA to the new MC IT Professional: Database Administrator, so unless you have...

  • RE: Away From SQL

    Weapon speeds? What the hell are weapon speeds? (coming from someone who started with D&D 3.0)

    Pleae, don't let this deteriorate into a 2nd ed vs 3rd ed argument. There's better...

  • RE: Away From SQL

    My main hobbies are Aikido and computer graphics.

    After a day at work it's great to step onto the mat and forget everything except the partner you're working with and the...

  • RE: Question of the Day for 08 Dec 2005

    The traceflag is mentioned in Books Online under configuring database mirroring

    Important:
    Microsoft support policies do not apply to the database mirroring feature in SQL Server 2005....
  • RE: DTC problem with SQL 2005 on Server 2003

    Turning off the rpc security didn't help. I was getting the error about not been able to enlist in the specified transaction coordinator until I made some changes in the...

  • RE: How to insert more than one value into one field in the database?

    Could you give us a little bit broader description of tables involved and what fields are unique?

    Ideally you shouldn't put more than one value in a field (doing so...

  • RE: Update from SUM query

    update order_header set order_header.total_weight = TotalOrder.TotalWeight from (SELECT order_no, sum(weight) AS TotalWeight FROM order_lines GROUP BY order_no) TotalOrder where order_header.order_number= TotalOrder.order_no

    Not tested, but should be more-or-less right.

  • RE: How to insert more than one value into one field in the database?

    awww.. not a concatenated list... that will be absolutely horrible to search through...

    Search through? How about updating to remove a job. That goes...

  • RE: Check if DB is being written

    You could check the syslocks and syslockinfo tables in the master database to see if there are any exclusive locks on the table in question. That would tell you if there's...

  • RE: How to insert more than one value into one field in the database?

    You don't. You normalise your database schema so that a single field stores a single value.

    In your example use 3 tables. 1 to store details of the user. (id =...

  • RE: Length of character data types

    Varchar - requires 2 bytes + the amount of characters entered per record. The two bytes is used to store the actual length.

    If a field is defined VACHAR(5000) and I...

  • RE: Tutorials for beginners

    I'll add http://www.sqlskills.com

    And don't forget the SQL Books Online. It's probably the best reference to SQL that you'll find.

Viewing 15 posts - 49,291 through 49,305 (of 49,571 total)