Viewing 15 posts - 16 through 30 (of 50 total)
This should work. I am a little lost on your explanation - are you saying that they have allowed the IP of your SHIR in their storage network settings? If...
October 12, 2022 at 1:15 pm
Here is the link to the documentation
https://docs.microsoft.com/en-us/azure/data-factory/
Are you doing this in a dataflow, if so here is the documentation for the dataflow expressions
https://docs.microsoft.com/en-us/azure/data-factory/data-transformation-functions
If that doesn't help...
September 7, 2022 at 2:09 pm
I am not aware of any method to have the endpoint only allow connections from a certain application(s). S
If that is the exact error message you are receiving that makes...
September 6, 2022 at 1:52 pm
Great post. As I get older I realize that everybody's situation is different and trying to put yourself in others shoes helps one to definitely be more reasonable towards others. ...
July 29, 2022 at 2:15 pm
Can anyone think of any real life examples where you'd want to rank over something non-unique?
Yes. Sales by salesman, salary. I once had a query that ranked truck drivers...
July 11, 2022 at 1:38 pm
The tags I found most useful are Application Name, Integration Name, and Owner. For Owner we sometimes use a Team name but if it is one primary person we might...
July 1, 2022 at 12:57 pm
Amazing... you had to write all of that for a pipeline? Guess I'm glad I don't have to work with such a thing.
Since I don't know about pipelines, would...
May 27, 2022 at 5:05 pm
If you are merging code who is going to know how to resolve any merge conflicts that come up? In my mind, it seems like a developer will be the...
April 28, 2022 at 2:25 pm
In reality you should use ToDateTimeOffset() to convert the date time then do the comparison, look at the values you get in this query. You need to tell sql server...
February 21, 2022 at 10:27 pm
You can delete from temporal tables by ID just fine, you do not have to use the datetime columns. Several years ago we had an issue that sounds similar but...
July 2, 2021 at 1:36 pm
Did you try something like this:
SELECT *
FROM table1
LEFT JOIN table2 ON ST_Equals(table1.the_geom, table2.the_geom);
I searched google for -> tsql join on geometry column
and found several results on gis.stackexchange.com such as this...
October 30, 2019 at 6:55 pm
I wonder if more of us ought to be using UTC or at least datetimeoffset for applications. There are more and more that are crossing time zones and it...
October 2, 2019 at 10:42 pm
You should be able to do this from a Logic App which would allow you to handle the error that the IR is already stopped. The Logic App could use...
July 16, 2019 at 1:59 pm
Reading your original post again and assuming something from the view names, I suspect that you want to swap the tables and put all_clients_view first. I am guessing that you...
May 8, 2019 at 1:36 pm
Try 'left outer join' instead of 'inner join'
May 7, 2019 at 8:28 pm
Viewing 15 posts - 16 through 30 (of 50 total)