Viewing 15 posts - 76 through 90 (of 1,988 total)
To my point - if you are using datetime or datetime2 and need to be accurate across time zones, then you must have some method of determining the...
August 18, 2022 at 8:04 pm
To my point - if you are using datetime or datetime2 and need to be accurate across time zones, then you must have some method of determining the offset at...
August 18, 2022 at 5:18 pm
It's easier to change your job title than to improve your skill set 😛
August 17, 2022 at 3:18 pm
The difference between a datetime vs a datetime2 for this seems not very relevant for just capturing entry date the precision difference between the two is within the margin of...
August 16, 2022 at 5:52 pm
We can agree to disagree - but let me ask you this: How can you determine which entry in your table was entered in New York - and how...
August 16, 2022 at 5:42 pm
It is simply true. Good database design actually frees developers from enforcing data integrity and similar database stuff.
This is only partially true, database constraints can prevent bad data from getting...
August 15, 2022 at 7:39 pm
I want intellisense to work consistently.....
And when there's a column overflow/truncation the error message should include the freaking column name.....
BCP supporting database to database transfer so I don't have to...
August 15, 2022 at 2:32 pm
What will be a good reason to use this function and spesificaly for views?
Because a field has nulls in it.
July 29, 2022 at 3:07 pm
Why are you joining on row number? How many rows will that actually match?
July 16, 2022 at 3:38 pm
Do the order by on the guid.
July 15, 2022 at 6:21 pm
You don't have an order by on your join query so they're returning rows in different orders, try ordering that by maybe the guid and see what you get 🙂
July 15, 2022 at 5:53 pm
Can anyone think of any real life examples where you'd want to rank over something non-unique?
Sure, this is pretty common when you use it with a meaningful order by. ...
July 11, 2022 at 3:18 pm
That seems to be some custom SSIS component you're using, it's entirely possible it's not optimized properly. Have you tried just generating the XML in SQL Server with XML...
June 28, 2022 at 5:50 pm
Those are all good points in favor of using stored procedures. Something else to consider though is who is in charge of creating reports? What permissions do they have in...
June 10, 2022 at 3:41 pm
I find it odd that they would build such encoding into XML without building in some "old fashioned" coding to handle things like integers and dates without the bloat of...
June 7, 2022 at 4:59 pm
Viewing 15 posts - 76 through 90 (of 1,988 total)