Forum Replies Created

Viewing 15 posts - 4,621 through 4,635 (of 4,814 total)

  • RE: Regd Query

    Again, you need to look at Jeff Moden's tally table string splitter technique. It's set-based, so you just don't need a cursor for ANY reason. It's a tried...

  • RE: Regd Query

    I'm not talking about the destination column, I'm referring to the source data column, where the original data is coming from. What size and type is that data...

  • RE: Regd Query

    Then the 8000 length you're giving your varchar variable is the limiting factor. As I indicated before, a cursor is a LOUSY way to achieve your objective. ...

  • RE: Regd Query

    You haven't yet answered the questions posed before. A cursor is actually a lousy way to achieve your goal, and it's clear you haven't even made the attempt...

  • RE: Alternative to OpenRowSet

    What environment do you wish to achieve this from? I'm reasonably certain that this would be fairly easy from within the VBA code inside of MS Access or...

  • RE: Regd Query

    A couple of things needed to help you....

    1.) What result DO you get? It's kind of hard to know where to look for the problem if we don't...

  • RE: Remove/Suppress line/row if blank

    Jereme,

    Most of my post was intended at clarifying the details, as many questions were asked that suggested there was confusion. Even one of your posts talks about having...

  • RE: Remove/Suppress line/row if blank

    Actually, the property is the "Hidden" property, and it's within a property group known as Visibility. When set to False, the object IS visible, and when set to...

  • RE: 3 or more purchases over a 12 month period

    Based on the OP's (timbw's) request, the timeframe has to be ANY year, so I looked at this problem as the sum within one year of any given order, including...

  • RE: List out SP's Columns into a Table

    Isn't the OP looking for the result columns without an actual execution of the SP? Isn't there some kind of option that returns that information without executing the...

  • RE: Adding two tables to report

    Glad you have a working solution, although I think I might have approached this differently. I would have written code to create a single result set that has...

  • RE: T-SQL Haiku

    More "harmony" at work:

    INPUT LENGTH IS KEY

    TO COALESCE WITH ADMIN;

    BEGIN FILLFACTOR

    INSERT WITH ADMIN

    NOT HAVING SOME CHARACTER;

    CREATE ESCAPE PLAN

    PLAN TO USE ROLLBACK

    WHEN HAVING ADMIN NOT WITH

    CHARACTER VALUES

    Steve

    (aka smunson)

    :D:D:D

  • RE: T-SQL Haiku

    I'd be more concerned about the "can" influence, which might lead to this kind of thinking:

    IF BACKUP EXISTS

    TRIGGER DUMP PROCEDURE BY

    ORDER OF USER

    IF BACKUP EXISTS

    TRIGGER DUMP PROCEDURE WITH

    CHECK FOR DOUBLE...

  • RE: Access 2000 Recordset Question

    "Do" is nothing more than another version of "While". Neither of them require any tie to a recordset - there are no such restrictions on their use.

    Steve

    (aka smunson)

    :):):)

  • RE: Instead of Using Cursor? Other Ways?

    I'm going to suggest along another an entirely different line of thought. What reason do you have for aggregating all the e-mail addresses into a single line? ...

Viewing 15 posts - 4,621 through 4,635 (of 4,814 total)