Forum Replies Created

Viewing 15 posts - 61 through 75 (of 844 total)

  • Reply To: SSC Fantasy Football 2023

    What?  No fantasy football for the XFL or USFL? 😉

    -------------------------------------------------------------
    we travel not to escape life but for life not to escape us
    Don't fear failure, fear regret.

  • Reply To: Are the posted questions getting worse?

    Jeff Moden wrote:

    I love the knee-brace analogy.

    I don't like the idea of an automatic code debugger.  It would be misused in the same fashion.  A lot of people are just too...

    -------------------------------------------------------------
    we travel not to escape life but for life not to escape us
    Don't fear failure, fear regret.

  • Reply To: How do you Sprint?

    Thanks for the response Dennis on the main part of my post.  I do see how this 2 week sprint works well for application development.  But again on the DW...

    -------------------------------------------------------------
    we travel not to escape life but for life not to escape us
    Don't fear failure, fear regret.

  • Reply To: Are the posted questions getting worse?

    Loved watching Red-Green on PBS here in the states.

    -------------------------------------------------------------
    we travel not to escape life but for life not to escape us
    Don't fear failure, fear regret.

  • Reply To: How do you Sprint?

    That's a great quote Jeff.  Reminds me of a conversation I had yesterday.  They wanted me to just write some SQL to pull from a table I don't know any...

    -------------------------------------------------------------
    we travel not to escape life but for life not to escape us
    Don't fear failure, fear regret.

  • Reply To: How do you Sprint?

    Been here less than 10, hope to get 7 to 10 more before retirement. 🙂

    I would still be curious as to how others manage their sprints.  I still think it...

    -------------------------------------------------------------
    we travel not to escape life but for life not to escape us
    Don't fear failure, fear regret.

  • Reply To: How do you Sprint?

    Micromanagement is exactly it.  I just kept looking at it from the my point of view in that 'you keep putting road blocks in my way'.  I guarantee the amount...

    -------------------------------------------------------------
    we travel not to escape life but for life not to escape us
    Don't fear failure, fear regret.

  • Reply To: How do you Sprint?

    As I stated above we were told we had to complete each ticket by the end of the sprint.  But at the meeting to close out the last sprint we...

    -------------------------------------------------------------
    we travel not to escape life but for life not to escape us
    Don't fear failure, fear regret.

  • Reply To: The Programming Languages We Use

    Steve Jones - SSC Editor wrote:

    Python is better for handling data outside of the database. Moving files, cleaning, loading, and for general tasks. Interesting to work with python and Powershell for the same task...

    -------------------------------------------------------------
    we travel not to escape life but for life not to escape us
    Don't fear failure, fear regret.

  • Reply To: The Programming Languages We Use

    Steve Jones - SSC Editor wrote:

    below86 wrote:

    As someone who started out writing COBOL, and Assembler, it warms my heart that it's a skill in demand.

    I mainly use SQL now for everything, using SSIS and...

    -------------------------------------------------------------
    we travel not to escape life but for life not to escape us
    Don't fear failure, fear regret.

  • Reply To: The Programming Languages We Use

    As someone who started out writing COBOL, and Assembler, it warms my heart that it's a skill in demand.

    I mainly use SQL now for everything, using SSIS and SSRS mainly. ...

    -------------------------------------------------------------
    we travel not to escape life but for life not to escape us
    Don't fear failure, fear regret.

  • Reply To: Good Enough

    "Good Enough", great song by Van Halen(Van Hagar to some 😉 )

    I used to have some nightly batch jobs that ran for hours.  I was tasked with trying to make...

    -------------------------------------------------------------
    we travel not to escape life but for life not to escape us
    Don't fear failure, fear regret.

  • Reply To: I need a T-SQL script to find, for a given view across all databases, which ...

    Here is some code I had pirated about 6 years ago:

    CREATE TABLE #temp_list

    (

    db_names        varchar(500),

    tbl_names        varchar(500)

    )

    ;

     

    EXEC sp_msforeachdb 'INSERT INTO #temp_list SELECT "?" AS db_names, name AS tbl_name FROM [?].sys.tables'

    ;

     

    --SELECT COUNT(*)

    --FROM #temp_list

    --;

     

    SELECT *

    FROM #temp_list

    WHERE...

    -------------------------------------------------------------
    we travel not to escape life but for life not to escape us
    Don't fear failure, fear regret.

  • Reply To: Removing Number from String in SSRS

    You could have taken the code and created a SQL Stored Procedure(SP) you could call to replace the values in the field you sent the SP.  Then you could use...

    • This reply was modified 3 years, 8 months ago by below86.

    -------------------------------------------------------------
    we travel not to escape life but for life not to escape us
    Don't fear failure, fear regret.

  • Reply To: Removing Number from String in SSRS

    This will get rid of any amount of numbers you have:

    DECLARE @var VARCHAR(200);

    DECLARE @expres VARCHAR(50) = '%[0-9]%';

    SET @var = 'Apple (red)(12323)(green)';

    WHILE PATINDEX( @expres, @var ) > 0

    SET @var = REPLACE(Replace(REPLACE(...

    -------------------------------------------------------------
    we travel not to escape life but for life not to escape us
    Don't fear failure, fear regret.

Viewing 15 posts - 61 through 75 (of 844 total)