Viewing 15 posts - 1,561 through 1,575 (of 59,067 total)
@Brandie...
The code at the following link, written by Jonathan Kehayias, has been a huge help on occasion.
As one example, one of the screens in an app that our folks wrote...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 12, 2023 at 4:23 am
For any data you had to delete, anything with personally identifiable information, there are a couple of tools that can generate data for you to use in testing and...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 12, 2023 at 3:52 am
Why is it acceptable that a test environment is less secure than a production environment?
It's not, IMHO, and I don't see anywhere in the thread above where that was...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 11, 2023 at 11:11 pm
As the OP want an opinion about the two code options presented, i.e.
Option 1:
DECLARE @strcol1 varchar(max), @intco11 int
SELECT @strcol1 += ','+CAST(col1 AS VARCHAR(20)), @intco11=col1
FROM...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 11, 2023 at 8:10 pm
I tend to write these things to allow any combination of values later, so I stick with individual checks. For example, suppose later they want to check for status...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 11, 2023 at 7:27 pm
I'm not that worried about space per se. The column will be one of metadata and while seconds would be nice to have, accuracy to hours & minutes is...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 11, 2023 at 7:20 pm
I've been having debates with various tech people about ChatGPT. In many cases, it's not worse than the average (or below avg) dev. Not sure what to think of...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 11, 2023 at 6:07 pm
I have to say that if we did mix the good things of all of them we would have an really really outstanding product.
So... what are you...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 11, 2023 at 3:35 pm
And I just realized that this is an old post the OP has not responded.
--Jeff Moden
Change is inevitable... Change for the better is not.
April 11, 2023 at 3:26 pm
You can consult:
And just exactly how does that solve the problem "dynamically" as what the OP asked for?
--Jeff Moden
Change is inevitable... Change for the better is not.
April 11, 2023 at 3:24 pm
Yes. Indeed, the data must be protected.I will not copy anything confidential in Test environment. At the technical level, do you have any advice for copying the data to...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 11, 2023 at 3:19 pm
I agree with your point, but it is needed sometimes, so please tell me is there anything wrong in first query or should I go for second one or...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 11, 2023 at 3:10 pm
Please understand that, due to the nature of your question, I believe this post is the first of one-two spam punch.
Looks like I may have been right there. 😀
--Jeff Moden
Change is inevitable... Change for the better is not.
April 10, 2023 at 10:59 pm
Step 1... find everything in the database that will get you fired when someone steals them from your test environment and obfuscate them. You really don't want to read about...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 10, 2023 at 10:50 pm
Still, there are a lot of opportunities to use ChatGPT, not here, of course. In terms of asking this AI language model some questions, i wouldn't say it's too...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 10, 2023 at 2:19 pm
Viewing 15 posts - 1,561 through 1,575 (of 59,067 total)