Forum Replies Created

Viewing 15 posts - 4,666 through 4,680 (of 13,877 total)

  • RE: Error uploading jgp

    lucaskhall - Tuesday, February 20, 2018 12:42 PM

    the cv_wo_xtd_imgs tables holds photos that are uploaded and I have an on insert trigger...


  • RE: Error uploading jgp

    lucaskhall - Tuesday, February 20, 2018 12:22 PM

    Thanks for the input I guess now I am curious why it only seems to...


  • RE: SSIS equivalent of a case when

    david_h_edmonds - Tuesday, February 20, 2018 11:51 AM

    Hi Phil, thanks for the reply. Derived_Status is already a mapping table field that I...


  • RE: SSIS equivalent of a case when

    david_h_edmonds - Tuesday, February 20, 2018 9:57 AM

    Hi, I have come up with a different solution, not quite as sustainable with high...


  • RE: Error uploading jgp

    lucaskhall - Tuesday, February 20, 2018 9:10 AM

    i have an SSIS package that takes a image in my database and uploads it...


  • RE: 5 years or older

    craig.jenkins - Tuesday, February 20, 2018 5:50 AM

    I'm an idiot, sorry guys

    Don't be so hard on yourself, we've all done it 🙂


  • RE: 5 years or older

    Thank Guys, i've attached some dummy data below. As you can see the regdates are not older than 5 years

    And that is why you are selecting them.


  • RE: 5 years or older

    craig.jenkins - Tuesday, February 20, 2018 4:38 AM

    Guys, if i have a list of dates in a table how do i query...


  • RE: Inserting multiple records dynamic

    smthembu - Monday, February 19, 2018 9:37 AM

    Good day,
    I need to insert 7000 records into Table B and also add the same...


  • RE: Delete rows based on a second table

    xxx-593414 - Monday, February 19, 2018 8:02 AM

    I have two Tables (In Ms Sql Server)
    Table Name           Column Names
    MasterCities          Countryy    City
    VisitedCities           Country    ...


  • RE: Script task loses code in SSDT 2015?

    caf 13920 - Monday, February 19, 2018 6:39 AM

    Is there a bug with SSDT 2015 also regarding the Script Task component? If...


  • RE: Data Files (mdf)

    Lj Burrows - Monday, February 19, 2018 5:47 AM

    Yes you can merge two or more database to one by restoring the databases...


  • RE: Need to get consecutive duplicate rows

    Please describe why the solution i provided is unsatisfatory. It worked ok for me.


  • RE: Need to get consecutive duplicate rows

    Here is one way:

    WITH AllVals
    AS
    (
      SELECT
       *
      ,  PrevColB = LAG(t.ColB, 1) OVER (ORDER BY t.ColA)
      ,  PrevColC = LAG(t.ColC, 1)...


  • RE: Are the posted questions getting worse?

    Luis Cazares - Friday, February 16, 2018 11:55 AM

    Phil Parkin - Friday, February 16, 2018 10:33 AM


Viewing 15 posts - 4,666 through 4,680 (of 13,877 total)