Viewing 15 posts - 811 through 825 (of 59,078 total)
Be careful when testing. In this case, the OP hasn't defined what he means by "Assume I'm going to insert lots of data". Does that mean for just one, multi-row...
January 20, 2024 at 3:17 pm
Assume I have a table with a clustered datetime-index. Assume I'm going to insert lots of data. The data to be inserted is not in any specific order. Would...
January 19, 2024 at 3:18 pm
This isn't the right way to do things. You can easily get to the point of where your system is doing nothing but rollbacks. You could also be causing grave...
January 19, 2024 at 2:58 pm
I'm uncomfortable with ChatGPT. I've found that a lot of its answers are believable rather than correct.
Exactly. I summarize that as being "Confidently Incorrect" and, in that area, ChatGPT...
January 19, 2024 at 1:19 pm
While the AI is quite capable of explaining exactly WHAT the code does programmatically, it's simply not capable of figuring out the WHY for most code. For example, the AI...
January 19, 2024 at 1:15 pm
From what I have seen the people I would regard as being at the top of their profession have certain traits.
January 19, 2024 at 1:00 pm
Not aimed at the author but aimed at the whole concept... Let's look at the first example prompt in the article...
You are an SQL Server database developer. Assume you...
January 19, 2024 at 5:01 am
Heh... let's look at the first paragraph in the article...
It's a good idea to learn more about different technologies. I've been amazed throughout my career, and even now as...
January 18, 2024 at 5:46 am
Not enough info... we're just guessing from descriptions. Please see the article at the 2nd link in my signature line below for what to post for these types of performance...
January 18, 2024 at 5:30 am
Possible solution to the original question...
Given the original example data...
Create Table #Payments (ID int, Comment Text)
INSERT INTO #payments values (1, '65607 Processed via? DISC Last 4 digits...
January 18, 2024 at 4:51 am
In this case I would start splitting the comment based on a space.
check "Tally OH! An Improved SQL 8K “CSV Splitter” Function"
and process the spliter results...
January 18, 2024 at 4:17 am
Phil Parkin will tell you that I'm not a big fan of SSIS or most of the any other 4 letter words in SQL Server.
That not withstanding and with the...
January 15, 2024 at 4:10 pm
Rule number 1: Claims of efficiency and/or performance MUST be accompanied by demonstrable code to prove it.
January 11, 2024 at 12:51 am
Third, the clustered index does store data in physical order on pages. The pagse/extents could get out of order, which is fragmentation, but that doesn't change the physical nature...
January 8, 2024 at 8:22 pm
Viewing 15 posts - 811 through 825 (of 59,078 total)