Viewing 15 posts - 3,781 through 3,795 (of 59,067 total)
Jeff Moden wrote:Apparently, this isn't an urgent problem, eh?
Guess someone is RTFM'ing 😉 ;cool:
That would be a nice change.
March 8, 2022 at 3:14 am
Another option
WHERE YourDateColumn >= DATEADD(month, DATEDIFF(month, 0, GETDATE()) - 1, 0) --First of previous month
AND YourDateColumn < DATEADD(month, DATEDIFF(month, 0, GETDATE()), 0) --First of...
March 8, 2022 at 3:13 am
So you will want to do some date math.
You should treat all dates as the ISO standard and to avoid any ambiguity use YYYY-MM-DD formatting when passing dates to...
March 8, 2022 at 3:05 am
Just a thought, start by importing the file as all character columns, then analyse the data and reconstruct the target table. 😎 I don't like the Import AND...
March 8, 2022 at 2:31 am
I think the following error line from those that you provided is the key hint as to what is wrong...
Error 0xc02020c5: Data Flow Task 1: Data conversion failed...
March 7, 2022 at 9:49 pm
All it indicates is that this query is called a lot - but if that execution is sub-second each time then you probably don't have an issue.
Ah, careful now. ...
March 7, 2022 at 9:45 pm
Apparently, this isn't an urgent problem, eh?
March 7, 2022 at 6:07 am
I think the following error line from those that you provided is the key hint as to what is wrong...
Error 0xc02020c5: Data Flow Task 1: Data conversion failed while converting...
March 7, 2022 at 6:01 am
Just try asking that same question on Google or any search engine. It's a common question and there are a shedload of excellent articles on the subject.
March 7, 2022 at 5:52 am
Ah, be careful now. If you use a formula for the backbone of your computed "field" (they usually referred to as a computed or calculated "column") and it has any...
March 7, 2022 at 3:38 am
I did want to mention that this machine is a 2 node(8 cores per) machine and the Cost Threshold for Parallelism is set to 50. Maxdop on server basis...
March 7, 2022 at 2:59 am
oRBIT - I finally figured some stuff out and used and old example of a small hierarchy and converted it to HIERARCHYID. The "ID" column in your table is a...
March 5, 2022 at 11:26 pm
I have a fellow that's trying to resolve some performance issues in a HierarchyID-based table. I just don't use HierarchyID because I've found or made better ways to...
March 5, 2022 at 11:20 pm
@shree23 ,
Thank you for trying but you posted no image of expected results like your post says you did and I know for sure that you didn't even try your...
March 5, 2022 at 7:53 pm
I have a fellow that's trying to resolve some performance issues in a HierarchyID-based table. I just don't use HierarchyID because I've found or made better ways to work with...
March 5, 2022 at 3:25 am
Viewing 15 posts - 3,781 through 3,795 (of 59,067 total)