Viewing 15 posts - 16 through 30 (of 138 total)
umarrizwan (4/2/2013)
issue is with varchar value 'z' in data ('2013-10-29 22:59:00Z) and you are converting it to datetime or datetime2.
Datetime2 handles the 'z', Datetime does not
April 3, 2013 at 1:25 am
I have been trying the derived table route, but have hit a very strange problem - I have 50 records in my table with a Type of D and a...
April 2, 2013 at 6:55 am
It still fails with the same error
April 2, 2013 at 6:17 am
Looks like a solution - I'll give it a try
January 25, 2013 at 8:11 am
Then I would have dynamic sql generating dynamic sql! I'm afraid it will disappear up it's own rear end! 😀
January 25, 2013 at 5:54 am
Easiest way is to use the mailmerge facilities within Word, connecting to your Access database
December 18, 2012 at 4:32 am
There is a known problem with Access linked to a SQL back end that can exhibit this behaviour.
If you have a bit column in the table that does not have...
August 31, 2012 at 8:36 am
I tried it the other day with a very long delimited list of several thousand items - a tally based function took about 3 seconds, the xml one took 0...
August 3, 2012 at 7:43 am
F. van Ruyven (8/3/2012)
I like Duvel, but like this one even more
I was in a bar in Leuven in Belgium (Cafe Amadee) and they had Trappist beer on draught...
August 3, 2012 at 7:15 am
GilaMonster (5/30/2012)
I have a good beer bread recipe if anyone want... 😉 :hehe:
In Russia, instead of beer bread, they have Bread Beer! http://en.wikipedia.org/wiki/Kvass
August 3, 2012 at 6:57 am
Try this - it works faster for me than using a tally table - it converts the string to xml, then selects from the XML
CREATE FUNCTION [dbo].[Split]
(
@delimited nvarchar(max),
...
August 3, 2012 at 6:44 am
Lowell
I don't want too many repeats, so I'm using the full census tables.
Using the two seperate functions, it updated 2500 rows in 12 minutes - for 500,000 records I will...
September 21, 2011 at 8:31 am
Lowell - thanks for your response
With the exception of a small typo (a comma in MyRandomNamePairs,Surname instead of a period), it does appear to work, but the performance is not...
September 21, 2011 at 8:03 am
This can be fixed by changing WHERE EXISTS to WHERE NOT EXISTS
February 8, 2011 at 8:27 am
How about this? Use Acces's Split function using "ZB5|" as the delimiter, then add the "ZB5|" back to the start of each array member
Public Sub SplitLine()
Dim textline() As...
October 15, 2010 at 2:34 am
Viewing 15 posts - 16 through 30 (of 138 total)