Forum Replies Created

Viewing 15 posts - 181 through 195 (of 207 total)

  • RE: Top n with a twist

    quote:


    
    
    CREATE TABLE TBL (GRP INT, VALUE INT)
    GO

    INSERT TBL VALUES (1, 1)
    INSERT TBL VALUES (1, 2)
    INSERT TBL VALUES (1,...

  • RE: Partial Data Retrieve

    Check the sql for "select top 1 ..."

    Inner joins can do some interesting things to data sets if not properly applied. You may have an inner join where what you...

  • RE: Best way to NOT to RUN a job on a list of dates

    I have a couple of options for you,

    In the job add a step using an ActiveX script option and check the date. if the date falls into your "do not...

  • RE: dynamically FROM clause

    quote:


    Thanks. It worked.

    I had to use CAST for the Where clause.

    DECLARE @ID int

    SET @ID = 1

    SET @where = ' WHERE ID =...

  • RE: ASP

    quote:


    pinhead is right. without creating an IIS app it won't execute ASP scripts ...


    This may...

  • RE: Bit Flag or seperate columns

    The relational tables is definately a better solution. I had to build a quiz app and keep track of who answered what (the quiz was related to a contest the...

  • RE: QOD 10-21

    quote:


    In my dreams. Useually it goes:

    quote:


    It Ddesn't work

  • RE: QOD 10-22

    quote:


    The "correct" answer seems incomplete to me. After creating the sp the developer would also need to grant access to other...

  • RE: QOD 10-21

    I only have a smll complaint, but that's cuz I'm not a guru yet =).

    It would have been nice if we were told what the problem was that the programmer...

  • RE: HTML to SQL

    I agree with Chris. I had a project that required a daily report to be sent out in HTML format via email. I just sucked out XML and did a...

  • RE: QOD 13/10/2003

    I have to agree. The way the question was worded, and the answers given, I answered there was no way to temporarily disable foreign keys.

    It would have been better to...

  • RE: Calling an ASP page using xp_cmdShell

    quote:


    I've been warned about using xp_cmdshell to do this is there a more secure way of doing this?


    September 29, 2003 at 7:41 am

    #476200

  • RE: QOD 09/29/2003

    Doesn't there have to be an "END TRANS" for this statement? I'm not familiar with using transactions, but I could have swore you had to have an END in there.

    ...

  • RE: Calling an ASP page using xp_cmdShell

    quote:


    Sorry guys i thot this might be related...

    the code below doesnt work for me...any ideas

     
    
    declare @x...

  • RE: Calling an ASP page using xp_cmdShell

    Change your vbscript to this:

    Dim XMLHTTP

    URL = "http://localhost/test.asp"

    set XMLHTTP= CreateObject("Microsoft.XMLHTTP")

    XMLHTTP.Open "POST", URL, false

    XMLHTTP.Send

    I tested the code sample given there and found the same issue. The code above will work however....

Viewing 15 posts - 181 through 195 (of 207 total)