Viewing 15 posts - 1 through 15 (of 251 total)
Why not use a stored procedure? Would give you the flexibility to sort any way you want, and you can name the procedure something that indicates how the data is...
July 2, 2025 at 1:03 pm
Not sure why you're repeating what you said. Looks to me like the example OP posted is definitely NOT a correctly built CSV file. You're certainly correct that this would...
June 9, 2025 at 4:37 pm
If I had to do this, the first thing I'd try to figure out is how to detect the issue, regardless of the final implementation. How can you possibly know...
June 9, 2025 at 2:01 pm
And yes, in some case running SSDT on a server added some overhead in terms over memory consumption. Not really a problem though in almost all cases
It most certainly...
September 13, 2024 at 1:24 pm
I agree with your points, but I think you missed what that quote is really saying.
It's not really about "naming" things per se, it's a comment about how a name...
November 6, 2023 at 2:04 pm
Sounds like your devs don't know how to use your ORM properly. That's a shame. ORMs semm to often be touted as a "silver bullet" to solve all your database...
September 7, 2022 at 2:18 pm
Been a developer for 25+ years...I'm no longer optimistic.
September 7, 2022 at 1:20 pm
IF you have an SSIS server per environment AND you are sure you'll NEVER need to change the parameters in the future (yeah, right) AND you never need to go...
August 17, 2022 at 3:47 pm
We only have one server with one catalogue.
We use it to override settings that may come from deployments. New project -> Configure -> Link to environment. You may...
August 17, 2022 at 1:20 pm
Yeah, but you can set the project to "build" but not to "deploy" in the solution's configuration in Visual Studio. That's what I generally do,. I want to "build" the...
March 16, 2022 at 2:18 pm
I experienced a lot of problems with SSIS complaining about being unable to convert data. All I wanted to do was export my table to Excel, and the only way...
March 11, 2022 at 5:24 pm
I didn't say "import", I said "export". 🙂
I'm glad you haven't had any issues, I wish my experience was equally "trivial", and introducing a conversion widget in your flow isn't...
March 11, 2022 at 4:33 pm
Hmm, I think it's a waste to use nvarchar for a basic value like Product ID. Twice the bytes for no gain. Why not just varchar?!
Microsoft Excel, that's why....
March 11, 2022 at 1:51 pm
def func1(p1):
print(p1)
def func2(p1, p2):
print(p1, p2)
def func_handler(func, *args):
func(*args)
func_handler(func1, 1)
func_handler(func2, 1, 2)
I'm not sure what you're really...
February 14, 2022 at 2:25 pm
I'm not sure what my point really was, but I guess it wasn't really arguing about where to put the semicolon. My issue is more with the lack of consistency...
February 1, 2022 at 2:15 pm
Viewing 15 posts - 1 through 15 (of 251 total)