Viewing 15 posts - 61 through 75 (of 842 total)
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...
April 5, 2023 at 8:37 pm
Loved watching Red-Green on PBS here in the states.
April 3, 2023 at 1:36 pm
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...
March 31, 2023 at 3:36 pm
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...
March 21, 2023 at 9:24 pm
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...
March 21, 2023 at 7:19 pm
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...
March 21, 2023 at 3:54 pm
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...
January 18, 2023 at 8:10 pm
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...
January 17, 2023 at 2:24 pm
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. ...
January 13, 2023 at 5:59 pm
"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...
October 25, 2022 at 2:57 pm
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...
October 17, 2022 at 1:15 pm
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...
September 30, 2022 at 8:25 pm
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(...
September 27, 2022 at 1:32 pm
All of your examples also only show (23) as what you want to remove, it you know the string then a replace would be the easiest way to remove that...
September 22, 2022 at 2:18 pm
So what will you store if you have "Apple (Red) (23) (Granny)"? "Apple (Red) (Granny)"?
What is the purpose to remove the number? Can the number be more than 2 digits?
You...
September 22, 2022 at 1:50 pm
Viewing 15 posts - 61 through 75 (of 842 total)