September 5, 2022 at 8:40 pm
[Updated 9/6/22]
What is the easiest way to get a world map into the map gallery so that I can embed into my report? I look at this shape to sql tool, but the download is no longer available.
https://www.sharpgis.net/page/shape2sql
Also, Using Visual Studio 2022. Any map I load from the map gallery (US only maps there), I get an error when previewing the report:
"An attempt was made to load a program with an incorrect format (Exception from HRESULT 0x80070000B)."
I searched through the VS developer forums and didn't find a specific solution, but there are several related issue on this error message and seems like the solution is about getting VS 2022 to run 32-bit enabled. But the posts are so old that the solutions no longer apply.
Anyone out there run into this issue? I posted a topic on the developer forum and will update this thread if I find out anything helpful.
September 6, 2022 at 12:35 am
Why not reach out to the author of that article?
--Jeff Moden
Change is inevitable... Change for the better is not.
September 13, 2022 at 6:16 am
September 13, 2022 at 3:16 pm
[Updated 9/6/22]
What is the easiest way to get a world map into the map gallery so that I can embed into my report?
Also, Using Visual Studio 2022. Any map I load from the map gallery (US only maps there), I get an error when previewing the report:
"An attempt was made to load a program with an incorrect format (Exception from HRESULT 0x80070000B)."
I searched through the VS developer forums and didn't find a specific solution, but there are several related issue on this error message and seems like the solution is about getting VS 2022 to run 32-bit enabled. But the posts are so old that the solutions no longer apply.
Anyone out there run into this issue? I posted a topic on the developer forum and will update this thread if I find out anything helpful.
Why did you remove the link to the original article you were referencing? That was actually a helpful link for those searching for the same thing and landing on your question.
--Jeff Moden
Change is inevitable... Change for the better is not.
September 13, 2022 at 3:45 pm
Jeff,
oh sorry I mistakenly took that link out when I edited it for the error message. Which makes this thread no longer makes sense. And I should have created a new post for the error. I re-edited and I contacted the author but haven't heard back yet...
September 13, 2022 at 5:13 pm
Jeff,
oh sorry I mistakenly took that link out when I edited it for the error message. Which makes this thread no longer makes sense. And I should have created a new post for the error. I re-edited and I contacted the author but haven't heard back yet...
Considering your credentials in your signature line, do you have a blog titled SQLJason?
--Jeff Moden
Change is inevitable... Change for the better is not.
September 13, 2022 at 5:37 pm
No, not me. I am an old school developer, working mostly with Oracle in the 90's until 2007 and then retired. And recently decided to switch back to IT after a > 10 year hiatus. My how things changed. So I figured, while beginning the process of resharpening my skills, I should get some certification to back up my plan to return to the workforce.
September 13, 2022 at 9:11 pm
Welcome back and good to "meet" you.
--Jeff Moden
Change is inevitable... Change for the better is not.
September 14, 2022 at 4:21 am
Install QGIS and use ogr2ogr utility to load the SHAPE file to SQL server:
ogr2ogr --debug ON -f "MSSQLSpatial" "MSSQL:server=.;database=GovilLoad;trusted_connection=yes" "PARCEL_ALL\PARCEL_ALL.shp" -a_srs "EPSG:2039" -overwrite -unsetFieldWidth -progress --config MSSQLSPATIAL_USE_BCP FALSE
for me the BCP (Bulk Copy) not working!
some version don't import all the length of text fields. (if the text is Hebrew in the DBF).
September 14, 2022 at 4:35 am
Install QGIS and use ogr2ogr utility to load the SHAPE file to SQL server:
ogr2ogr --debug ON -f "MSSQLSpatial" "MSSQL:server=.;database=GovilLoad;trusted_connection=yes" "PARCEL_ALL\PARCEL_ALL.shp" -a_srs "EPSG:2039" -overwrite -unsetFieldWidth -progress --config MSSQLSPATIAL_USE_BCP FALSE
for me the BCP (Bulk Copy) not working!
some version don't import all the length of text fields. (if the text is Hebrew in the DBF).
You might want to ask the "Jason" (SQLJason, form what I see in the post) for help on that subject. Apparently, he would know the data better than the rest of us.
--Jeff Moden
Change is inevitable... Change for the better is not.
Viewing 10 posts - 1 through 9 (of 9 total)
You must be logged in to reply to this topic. Login to reply