Viewing 15 posts - 1 through 15 (of 26 total)
Hi Brien, no indeed. In fact it is a bug with at least the latest 2 versions of DMS, spinning up another instance on a release previous to that, and...
November 21, 2020 at 10:11 am
sending a single update works ok
November 18, 2020 at 9:25 am
[ALTER PROCEDURE [dbo]].[AreaToEdge]] @WKT VARCHAR(MAX), @SEARCH_DISTANCE INT, @MARGIN...July 23, 2018 at 8:40 am
Phil Parkin - Monday, July 23, 2018 8:20 AMCan you post the results of running 'SCRIPT TABLE AS CREATE' please?
USE Metadata
GO
CREATE TABLE...
July 23, 2018 at 8:33 am
got this error
SQL2.sql: Error (1,1): ALTER TABLE DROP COLUMN failed because column 'ALTER PROCEDURE [dbo].[AreaToEdge] @WKT VARCHAR(MAX), @SEARCH_DISTANCE INT, @MARGIN INT = 10/*********************************' does not exist in table...
July 23, 2018 at 8:33 am
Thank you Luis, I was indeed looking at the issue from the wrong direction. Your code is excellent and very fast, I will learn what it is doing and take...
September 25, 2017 at 12:48 am
EDIT:
I thought it was quicker, but it's still really slow on 92M rows.. I would welcome any ideas please?
thank you
it's ok, I've sorted...
September 22, 2017 at 7:45 am
thanks to everyone for their suggestions, on writing some test data I noticed that it was working ok, it must be my data.. I will close the call!
IF OBJECT_ID('tempdb.dbo.#DATA') IS...
May 8, 2015 at 7:21 am
Igor Micev (5/8/2015)
UPDATE [temp]
SET Abstract_area = tmp.DataSet
FROM #TEMP1 [temp]
INNER JOIN ( SELECT T.*...
May 8, 2015 at 5:51 am
"Use table variables instead of temp tables"
Why would this be a normal thing to do? Table variables only report 1 row for statistics, temp tables would be better for...
December 29, 2014 at 12:34 am
Grant Fritchey (2/11/2013)
I don't...
May 9, 2014 at 7:00 am
No error from this:
-- header from image to varbinary(max)
DECLARE @header TABLE (
header varbinary(max)
)
INSERT INTO @header
SELECT AD.SW_GEOMETRY
FROM Abstract_DPB AD
WHERE AD.SW_MEMBER=40967
UPDATE @header
SET header = CAST(STUFF(header,19,0,103000000010000000) AS varbinary(max))
--...
May 6, 2014 at 3:07 am
UPDATE Abstract_DPB
SET SW_GEOMETRY = STUFF(SW_GEOMETRY,20,0,0x103000000010000000)
WHERE SW_MEMBER=40967
"SQL.sql: Error (38,1): Argument data type image is invalid for argument 1 of stuff function."
ah...
May 6, 2014 at 2:11 am
Phil Parkin (5/6/2014)
If yes, this...
May 6, 2014 at 2:00 am
Am trying this...
-- Use a table variable to cast the trace
-- header from image to varbinary(max)
DECLARE @header TABLE (
header varbinary(max)
)
-- insert the trace header into...
May 6, 2014 at 1:58 am
Viewing 15 posts - 1 through 15 (of 26 total)