Viewing 15 posts - 1 through 15 (of 247 total)
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
So...this doesn't work...where does the semicolon go? I'd put it after the END myself, but it looks weird. Is "END" supposed to be terminated? I rarely do that, shoudl I...
January 31, 2022 at 7:03 pm
You're blaming the developer -- are you so sure it was their fault?
"No, don't worry about that, just get it done, we'll fix it later." (ever head "management" say that?)
There...
January 12, 2022 at 2:18 pm
What specifically do you mean by "migrate from SSMS to SSDT"? What do you want to migrate?
Do you want database objects? Tables/views/procs/etc.? Create a new Database project in Visual Studio...
January 5, 2022 at 1:51 pm
Viewing 15 posts - 1 through 15 (of 247 total)