Forum Replies Created

Viewing 15 posts - 256 through 270 (of 1,183 total)

  • RE: Showing all the combinations

    If you MUST use the table structure defined above then you'll need something to define a unique record (PK)

    I've added it for demonstration purposes.

    DECLARE @CH TABLE

    (nDex...

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: Variable Join Help

    Please post what you've tried already. 🙂

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: How To Match For Dates in T-SQL (w/o RegEx)

    Only a slight bit more "bulky" ...

    DECLARE @test-2 TABLE

    (

    id INT IDENTITY(1, 1),

    string_with_date VARCHAR(100)

    ...

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: Joining field contents in table footer, like summing integers?

    I would suggest, use UNPIVOT in your query/proc along with your normal data collection to add in the string combination of your values. Search this site, there are many examples....

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: ISNull Not working

    Faye Fouladi (7/21/2011)


    this problem was posted long time ago. I no longer work on this project, therefore, I cannot test it.

    You mean you don't work on the same issue for...

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: Linked Server ACCDB file

    I know this is NOT addressing your problem, but in case you didn't already know about this nifty tool from MS. If you're just planning on synching them once in...

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: Delete Records - Options

    A Soft Delete would be the case if your records had a column that defined the state of the record. i.e. an isActive bit column or an endDate column. Something...

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: Get rid of error message 'An item with the same key has already been added'.

    M10.May10_Ad4 is repeated twice?

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: Problem with the code

    Krasavita

    Please check the article linked in my signature to get better responses from user on this site.

    Please define "Not Working Properly"

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: Delete Records - Options

    That really depends on your system. Do you have the ability to "soft delete" or mark records inactive. How are these records tied to other data? Will you be creating...

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: Transaction Log curosity

    Pardon me for stepping in here, but going directly to '08 is a bigger can of worms than going to SP4. :hehe:

    EDIT: Not that it's a bad idea, just more...

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: Get rid of error message 'An item with the same key has already been added'.

    Try this 🙂

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: Get a row of Min Value

    Since you want columns not included in the MIN function, you'll need to use a subquery to get those min values by material ID then join to that to get...

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: Checking for patterns in a int

    bopeavy (7/19/2011)


    opc.three

    That at least helps give some sort of direction, Thanks.

    @jason

    It may have but what opc provide will help me see the pattern yours was alittle harder to...

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: Checking for patterns in a int

    Am I wrong or doesn't my "solution" above find these patterns?

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg

Viewing 15 posts - 256 through 270 (of 1,183 total)