Forum Replies Created

Viewing 15 posts - 61 through 75 (of 654 total)

  • RE: ADO (not .NET) and C++

    BOL should have samples for C++ and ADO


    Everything you can imagine is real.

  • RE: how to Sending Appointments to Outlook ics File-from sql server Email

    my thinking is you can use the outlook programming model so you could probably use the .net runtime. create a dll which has the outlook calendar objects etc.. and add...


    Everything you can imagine is real.

  • RE: Half a Million

    as an IT contractor, i find that I can keep my skills upto date by responding to peoples queries when the current contract does not use a lot of the...


    Everything you can imagine is real.

  • RE: Odd behavior with SQL and order by

    oh well there is something to learn everyday


    Everything you can imagine is real.

  • RE: RBAR to Set Based Solution; for the honour and the glory.

    probably won't help much, but can you post a bit of the schema.


    Everything you can imagine is real.

  • RE: Odd behavior with SQL and order by

    why?? I have never seen a case... being used in an Order by.

    if you want to do that stuff the way you want i think you are better off...


    Everything you can imagine is real.

  • RE: Grouping/Aggregating records

    the functionality you want is a function of the frontend controls, you might consider getting a hierachical datagrid or something along those lines like Infragistics.

    but as for the sql, the...


    Everything you can imagine is real.

  • RE: Grouping/Aggregating records

    probably a dumb question but is your DATASET a .net dataset or a set of data?


    Everything you can imagine is real.

  • RE: Newbie: Copy database but not tables

    first find out why you can't override the tables. what error message are you getting etc.

    to copy your tables you can either write your own sql or use of the...


    Everything you can imagine is real.

  • RE: Error in Stored Procedure

    Johann Montfort (10/1/2007)


    Hi Kenneth

    I found my error.

    ...

    I was repeating the same variable @HamTeamsID, when it was supposed to be @PosID!

    Johann

    so what worked?


    Everything you can imagine is real.

  • RE: Error in Stored Procedure

    never compare your column values to null because null is not necessarily equal to null

    anyway try to change your code like so

    IF @HamTeamsID is null SET @HamTeamsID = 0

    IF...


    Everything you can imagine is real.

  • RE: T-SQL question

    its a good kind of bashing because it shows people want to help you . maybe we should have a status on posts to denote...


    Everything you can imagine is real.

  • RE: Selecting last two orders

    are you not using an order id, can't you use that to get the last orders?

    as for your script try to alias your sub query i.e.

    SELECT createdate AS ShipDate, TrackingNumber

    FROM (SELECT...


    Everything you can imagine is real.

  • RE: Can this query be optimized

    you can also have a look at your query execution path, to see were you can optimize


    Everything you can imagine is real.

  • RE: Selecting last two orders

    SELECT TOP 2 createdate AS ShipDate, TrackingNumber

    FROM shipments

    WHERE a.customerid = 'dmo-con'

    ORDER BY createdate desc

    what errors are you getting when using the sub query?


    Everything you can imagine is real.

Viewing 15 posts - 61 through 75 (of 654 total)