Forum Replies Created

Viewing 15 posts - 91 through 105 (of 106 total)

  • RE: Is there any possibility to two different ddbs to see each other?

    Retrieving data from another database on the same server is very straightforward. E.g. from the master database you can issue the command SELECT * FROM pubs..sales (no need to specify...

  • RE: Question of the Day for 16 Feb 2004

    Bear in mind that the answer has been changed since the original posting. When I responded, both answers 2 and 3 stated database name and not filename.

    This was corrected but no...

  • RE: Question of the Day for 16 Feb 2004


    I'm just wondering why "use DTS" isn't an option - it's a far better method than 1 and 4...


    There are many ways to do this (as the footnote to the...

  • RE: Question of the Day for 16 Feb 2004

    Replies are split right down the middle between restoring using the logical database name and restoring using the physical database name. This seems to be evidence that people didn't have...

  • RE: Question of the Day for 05 Feb 2004

    Oh come on guys! Theres no such thing as the 'Windows Application Application Log'. It is just called the 'Windows Application Log' - viewed using the 'Event Viewer' application

  • RE: Question of the Day for 02 Feb 2004

    O.K. so I got it wrong (again)! Is SQL 2000 different to SQL 7.0 in that it doesn't save the ISS file by default?

    According to Books Online for 7.0 :


    By default, when...

  • RE: Replace NULL value with 0 in query

    So sorry So you did.

  • RE: Replace NULL value with 0 in query

    I'm suprised that noone has suggested using COALESCE. This uses the first non null value in a list of values. So how about replacing

    -ISNULL(((KRE_MED_14),0)

    with

    -COALESCE(KRE_MED_14,0) etc.

  • RE: Question of the Day for 16 Jan 2004

    oops sorry! Didn't read the question properly. I thought we were trying to dissable index hints for just one connection.

  • RE: Question of the Day for 16 Jan 2004

    How do you set a trace flag for a connection? If the app is connecting through it's own logon, how do you 'get at' that connection to set the flag...

  • RE: QOD dec 19

    We also have a policy of always using character months (eg '19 Dec 2003'), however, we came a cropper when we opened an office in Switzerland - where they use...

  • RE: QOD 12/17/03

    OK so the answer was wrong and we want our points back - but not at the cost of losing the QOD section!

    I look forward to the...

  • RE: QOD 11/21

    quote:


    That means that you now have to have 1 million unique last order dates in your table.


  • RE: QOD 11/21

    You are correct that you wouldn't normally want to have clustering on a volatile column. However, this doesn't seem to be that volatile and there are no other indices to...

  • RE: QOD 11/21

    Only a clustered index will solve this problem. You can only have one of these so you must drop the existing cluster.

    Hands up all thise who didn't spot the change...

Viewing 15 posts - 91 through 105 (of 106 total)