Forum Replies Created

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

  • Reply To: Peaks and troughs from fluctuating prices

    This is interesting.  Nicely done Jeff.  The AI (ChatGPT-4) was unable to make any improvements to the query marked as the solution.  It never comes up with nothing so it...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: Peaks and troughs from fluctuating prices

    The prompt was based on minimal code

    this sql code omits a 2nd column with which we could order the rows.  Could you add a date column...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: Peaks and troughs from fluctuating prices

    Without a second column containing a date (or some ordinal data type) there's no way to ensure the row ordering is consistent.  Thanks ChatGPT for fixing the data.  You could...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: vlookup in range

    No idea what's meant by the rounding.  Presumably (to get the correct output) there's a '<=' inequality.  To handle the range between 174 and 176 you could create a partial...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: Are the posted questions getting worse?

    Here in New Jersey USA it's too nice of a day to sit behind a screen!  Spring fever in full effect here 🙂  After my 2 o'clock meeting... adios

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: Count Number of Records

    water490 wrote:

    I am getting this error.  How do I fix it?

    (573 rows affected)
    Msg 468, Level 16, State 9, Line 14
    Cannot resolve the collation conflict between "Latin1_General_CI_AS" and...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: Count Number of Records

    drop table if exists #trades;
    go
    create table #trades(
    underlying_symbol varchar(10) not null,
    trade_date ...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: Hierarchy related calculation

    From the tables provided what is the expected result?

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: How to get top 100 values of a col concatenated in a variable in sqlserver?

    If it were only the 100th row maybe OFFSET paging.  Since it's both the aggregation of the rows as well as the 100th value you could try using ROW_NUMBER in...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: Domain Extension Splitting Based on Dot(.)

    Nice one Jeff.  That's a good looking query.  It makes good use of '+'  as the NULL respecting concatenation operator.  My initial thought was to reverse the string and use...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: Bad data - updating date from new FK

    All right it sounds tedious.  To differentiate the duplicates you're looking to add 1, 2, 3, ... n hours to the datetime column, EffectiveDate.  Of course, this could create new...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: How to add couple more conditions to the query

    Maybe 3 WHERE clause conditions could be sufficient (A and B or C):

    A) the existing criteria

    B) NOT College ID 06 under Municipality 25002

    C) municipal_ID equals 4269005 (which would be inclusive...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: Finding duplicates based on count on different fields

    Or it could be 5 or ?

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: Finding duplicates based on count on different fields

    In conclusion I would recommend a crosstab-type query.  Conventions of language don't always map to relational operators.  And often predictably so.  Language conventions that is.    Are you sure you're...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

  • Reply To: SSIS C# Script Question

    Just scanning the code and there are nested Try/Catch and a transaction is declared but rollback only appears in 1 of the TRY code blocks.  That's concerning imo.  Could you...

    Aus dem Paradies, das Cantor uns geschaffen, soll uns niemand vertreiben können

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