Viewing 15 posts - 3,061 through 3,075 (of 13,874 total)
Thom beat me to it!
microsoft.com vs amis.nl ... I know which source I'm going with.
January 8, 2020 at 2:53 pm
Jeff, thank you for taking the time to write all of this stuff out.
Importing from Excel using SSIS is almost always a massive pain, so I am going to check...
January 8, 2020 at 2:15 pm
Thanks John,
DENSE_RANK() is an analytical function
No it isn't, it's a Window function.
John already provided a link to analytic functions. Had you followed it, you would have seen that DENSE_RANK()...
January 8, 2020 at 2:10 pm
Another possibility is extracting a DACPAC for the DB in question and building an empty one from that.
January 8, 2020 at 2:06 pm
Finally, issue is fixed which was a silly and it's done. 🙂
OK, so what was the "silly" fix you employed?
I'll also state that it's a shame that you're...
January 7, 2020 at 3:11 pm
If the procs don't contain DML, what do they contain?
January 6, 2020 at 5:47 pm
Presumably because NULL is not a value.
Have you considered just using ELSE?
Otherwise, use the extended 'Searched CASE' syntax:
... WHEN Education is NULL THEN 'Unknown'
January 6, 2020 at 4:36 pm
I do this in (a significant chunk of) C#, using a Script Task, for .XLSX files (as well as CSV files and Access files).
It's not for beginners, but it's not...
January 6, 2020 at 2:38 pm
If you want a working solution, please provide your sample data in the form of CREATE TABLE/INSERT statements.
January 6, 2020 at 2:35 pm
Please expand on this:
But when i open and saving that same excel file as .xlsx format it loads without error.
What format was the file in before you opened and saved?
December 18, 2019 at 1:31 pm
That is a requirement, but what is your question?
December 18, 2019 at 1:28 pm
If you want a working query, please provide DDL, sample data (in the form of INSERT statements) and desired results (based on your sample data).
You'll probably have to provide a...
December 17, 2019 at 1:30 pm
I'd still lean towards looking to buy some other CRM tool versus build your own.
Based on what you've (the OP) posted so far, I'd agree with this. I used to...
December 17, 2019 at 12:20 pm
Is the scope of this work as follows?
...
December 16, 2019 at 4:02 pm
SELECT o1.*
FROM OrderItem o1
WHERE NOT EXISTS (SELECT 1 FROM OrderItem o2 where o1.OrderId = o2.OrderId and o2.Status <> 'Shipped')
December 13, 2019 at 3:50 pm
Viewing 15 posts - 3,061 through 3,075 (of 13,874 total)