Forum Replies Created

Viewing 15 posts - 2,386 through 2,400 (of 3,668 total)

  • RE: Humble Beginnings

    My mum used to do an annual collection of charity boxes for the NSPCC and had to tot up and log the amounts by hand.

    I wrote a program on the...

  • RE: date & Time Filed search in Long date format HOW

    SQL Server does not have a separate time field.

    SMALLDATETIME contains dates and times accurate to the minute

    DATETIME contains dates and times accurate to 3 milliseconds.

    If you want to change the...

  • RE: Working Out of a Job

    Some life's observations from an old fart

    • No organisation shrinks to greatness!
    • But it doesn't stop them trying
    • Layoffs get exponentially scarier when you breach 40
    • Pay peanuts, get monkeys
    • If you work for a...
  • RE: Simple problem but I''''m struggling with the answer

    After a stiff expresso I sorted it.

    Table structure was loosely

    • ProductId
    • DateFrom
    • DateTo
    • Price

    Ages were produced by a table function returning a single column of ages.

    What I wanted was to bring back all products...

  • RE: How to apply SQL Server SP4 on Active \ Actice cluster

    If you have 6 instances spread across 2 nodes (making 6 virtual and 12 real) then you need to apply the service pack to your 6 instances.

    SP4 is cluster aware...

  • RE: A Good Reference

    My experience of training has been varied.

    The best one was when the official trainer had called in sick and a emergency contractor had to be called in. He taught...

  • RE: Working Out of a Job

    A person who does a good job makes it look easy. If it looks easy then it looks as if anyone could do it.

  • RE: How to apply SQL Server SP4 on Active \ Actice cluster

    Do you have AWE enabled?

    If so then you need to install the 2040 hot fix as well as SP4 (build 2039).

    Each instance needs a separate install of the service pack.

    SP4...

  • RE: iJacking

    I have a friend who was slightly worried about where we left our cars when we went to a rock concert.

    You don't have your works lap top in the boot...

  • RE: Is XML the Answer?

    As far as I can tell the advantages of XML are:

    • It can get through port 80 in a firewall without scaring network admins
    • It is geek readable so where the originator...
  • RE: multi table insert statement

    I don't believe that it is possible directly.

    I have used an INSTEAD OF trigger on a view to achieve something similar but to be honest the simplest way is with...

  • RE: multi table insert statement

    So Job has a dependency on the Person existing before it can be entered?

    Wrap it up in a transaction and have separate INSERT statements.

  • RE: Join Dissimilar Tables - Reporting

    Well do the tables have the same structure, or does the retrieved information have the same structure?

    Can you make your SELECT statements so that they do return same structured recordsets?

    You...

  • RE: Product with multiple categories and subcategories... design options?

    I would be tempted to have a category table with:

    • CategoryId
    • ParentCategoryId
    • CategoryName
    • ...etc

    This means that your category table becomes an extensible tree so when when a marketing type decides they want sub-sub-sub-sub categories...

  • RE: returning several record sets

    It has been a while since I did old fashioned ASP but there was a NextRecordSet method on a RecordSet object.

    FirstRs.Open "YourProc"

    Set SecondRs = FirstRs.NextRecordset

Viewing 15 posts - 2,386 through 2,400 (of 3,668 total)