Viewing 4 posts - 1 through 4 (of 4 total)
Its working with this way, takes 42 seconds to import 27.000 entities
DECLARE @X XML
SELECT @X = CAST(x AS XML)
FROM OPENROWSET(
BULK 'C:\temp\teste.xml',
...
January 14, 2013 at 8:29 am
Hi,
to the first question, it takes 2 seconds.
To the other question, I'm testing, and return sooner with the answer
i'm testing with this code:
DECLARE @X XML
SELECT @X = CAST(x AS XML)
FROM...
January 14, 2013 at 7:36 am
Just solved with this way, dont know if very good way, but its working
SELECT CONVERT(INT, dbo.OSUSR_BZA_USER_LOGIN_DAY.UserProfilePercentage) AS PERCENTE,
...
July 15, 2010 at 9:43 am
ColdCoffee (7/15/2010)
Does your table have any primary key to work on, apart from those 2 columns?
yes it have a primary key
July 15, 2010 at 9:18 am
Viewing 4 posts - 1 through 4 (of 4 total)