Viewing 15 posts - 1 through 15 (of 18 total)
Check if this can help:
https://learn.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#copylocallockfileassemblies
May 13, 2024 at 5:48 am
I usually update immediately, in the hope that the bugs that have been there for years may have been fixed.
Impossibility to print diagrams that show a CheckBox (Allow Nulls):
February 2, 2024 at 7:32 am
I usually update immediately, in the hope that the bugs that have been there for years may have been fixed.
Impossibility to print diagrams that show a CheckBox (Allow Nulls):
February 2, 2024 at 7:32 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...
September 14, 2022 at 4:21 am
September 13, 2022 at 6:16 am
When you give an image instead of data, text, and when in the image you display only two digits after the decimal point (so that most of the records are...
March 18, 2022 at 12:20 pm
May 21, 2021 at 6:12 am
Use:
UPDATE #r
SET Distance =
geography::Point( Latitude1, Longitude1, 4326 ).STDistance( geography::Point( Latitude2, Longitude2, 4326 ) ) * 0.000621371;
0.000621371 is meters to miles.
March 10, 2021 at 7:33 am
MS does everything so that the systems will not work if they are not in AZURE!
They want you to use both AAD and Graph
December 25, 2020 at 11:53 am
If the table has spatial index , SQL use it. (check if inside the box)
DECLARE @pnt geometry, @crcl geometry;
DECLARE @dis float = 10000;
SET @pnt = geometry::Point(210000, 700000,...
December 18, 2020 at 12:59 pm
You do not need to use CAST twice!
SELECT ISNULL(TRY_CAST(Myval AS INT), -1) FROM CastTest;
April 13, 2018 at 2:28 am
new DateTime(2016–04–01)
should be
new DateTime(2016,4,1)
September 29, 2017 at 1:00 am
Is it started around 2017-04-11?
In my system some of the reports take long long time and sometimes ended with timeout.
I suspect that some hidden updates of Microsoft are...
April 26, 2017 at 10:39 am
Why not to use CLR aggregate function that you can download from:
Izhar Azati
July 9, 2013 at 2:33 pm
Try:
SELECT * FROM #product
WHERE ','+catid+',' like '%,1,%'
December 4, 2009 at 7:22 am
Viewing 15 posts - 1 through 15 (of 18 total)