Viewing 15 posts - 166 through 180 (of 748 total)
It just turns out the solution has a deficiency: it seems cannot get result for url like more than three "."
declare @url varchar(255)
set @url = 'cid-0d8636520754b1ec.users.storage.live.com'
select PARSENAME(@url, 2) + '.'...
August 16, 2014 at 2:34 pm
SQLRNNR (8/15/2014)
Try the following type of query
SELECT PARSENAME('asdf.domain.com',2) + '.' + PARSENAME('asdf.domain.com',1) AS url
Thank you so much for your quick and simple solution
August 15, 2014 at 10:08 am
chris.johnson 1969 (7/28/2014)
July 28, 2014 at 6:58 am
paul.pennington (7/28/2014)
WHERE
d.DateFirstIssued > fy.FYQ2
Shouldn't the operator be >= to include the start date and...
July 28, 2014 at 6:57 am
g.britton (7/27/2014)
July 28, 2014 at 5:03 am
Jeff Moden (7/23/2014)
halifaxdal (7/22/2014)
July 24, 2014 at 7:02 am
Alvin Ramard (7/23/2014)
July 23, 2014 at 4:27 pm
Alvin Ramard (7/23/2014)
July 23, 2014 at 1:23 pm
For the 400M file, I remove the first two rows (non data), I also added BULKSIZE = 200 to the Bulk Insert, and I was able to load all the...
July 22, 2014 at 6:58 pm
Jeff Moden (7/22/2014)
David Burrows (7/22/2014)
Jeff Moden (7/21/2014)
July 22, 2014 at 12:30 pm
Jeff Moden (7/21/2014)
halifaxdal (7/21/2014)
July 21, 2014 at 8:22 pm
as I suspect if the EOF was recognized by bulk insert, I compare the two data files (the larger file costs me long time to load and even longer time...
July 21, 2014 at 6:57 pm
For the little test data file, the script and the format file work like charming and finished in less than 1 second.
I decided to go further, so I started...
July 21, 2014 at 6:06 pm
I found the root cause to the error, there is nothing wrong with you code but in fact when I save the format file, the UltraEdit automatically added some prefix...
July 21, 2014 at 5:55 pm
Thank you so much Jeff,
BUT, the first line of your script throws me an error:
Msg 9422, Level 16, State 48, Line 1
XML parsing: line 2, character 0, incorrect document...
July 21, 2014 at 5:48 pm
Viewing 15 posts - 166 through 180 (of 748 total)