Viewing 15 posts - 121 through 135 (of 1,988 total)
Basically you'll need to use a format file that maps the fields from your source file to the specific columns in the target table if the number/order of columns isn't...
March 3, 2022 at 9:58 pm
If you protect non-prod systems, then using production data wouldn't be an issue. That isn't the case for many organizations, where security is less lax.
So as long as your...
March 2, 2022 at 10:16 pm
I remember many developers calling them "memory tables".
The worst aspect of why people used table variables was that the Microsoft Best Practices Analyzer suggested they do so. At the...
February 28, 2022 at 5:44 pm
Datetime/Datetime2 are not specifically anything, just are a date and a time. And yes as you saw with your issue converting from a datetime to a datetimeoffset does not preserve...
February 22, 2022 at 2:54 pm
When you let it do the implicit conversion of anchor date it's setting the it to UTC time zone not converting, 2022-02-18 00:00:00.0000000 +00:00.
Which is actually less than 2022-02-17 20:22:47.8048644...
February 21, 2022 at 10:31 pm
Failed to specific whether it's a leap year or not.
February 15, 2022 at 4:16 pm
Why not move the parsing out of SQL? Parse the raw files in something else first(powershell, C# whatever) and dump them into the table structure needed then load from those?
February 7, 2022 at 9:01 pm
>>>>Eirikur Eiriksson wrote: >>>Grant Fritchey wrote:
>>Sean Lange wrote:
>And in other news....I have taken the plunge. After almost 25 years as a developer I have just accepted a...
February 3, 2022 at 8:25 pm
Not a language necessarily but it's definitely high time i learn how to really use git. We're starting to really use it and i need to be able to troubleshoot...
January 14, 2022 at 4:10 pm
What part are you having trouble with? Creating the connection string for prompting for the password?
January 5, 2022 at 8:32 pm
Well have you identified which queries are actually running to create those missing index statistics? You would then need to see how expensive those queries actually are beyond just they...
January 5, 2022 at 4:02 pm
Is that quote still applicable to your business? I wonder how many businesses have started to see new trends and needed to abandon some amount of historical data from their...
January 5, 2022 at 3:56 pm
What's wrong with just?
COL_ONE = COL_TWO AND COL_ONE=COL_THREE etc....
Any other "clever" solution is almost certainly going to be more code.
January 3, 2022 at 6:56 pm
I think there is no "one size fits all" solution, but I would also argue that with web-based content changes should be handled by the business, and not by one...
December 30, 2021 at 7:42 pm
Viewing 15 posts - 121 through 135 (of 1,988 total)