Viewing 15 posts - 331 through 345 (of 567 total)
clayman (5/12/2013)
May 13, 2013 at 10:27 am
Jeff Moden (5/10/2013)
wolfkillj (5/7/2013)
Phil Parkin (5/7/2013)
This is probably what you meant by "I can program the loading process in another way, I know." but to remove most of the doubt...
May 13, 2013 at 8:31 am
dwilliscp (5/9/2013)
May 10, 2013 at 10:23 am
mark.dungey 56406 (5/9/2013)
I have a problem trying add a element with an illegal character. I have the following SQL
SELECT
'en-GB' AS '@xml:lang',
'20120217164611.1712._3FO0ZXYQ3@GBRAPPCHL1' AS '@payloadID',
'2012-02-17T16:46:11' AS '@timestamp',
'1.2.014' AS...
May 10, 2013 at 9:41 am
Phil Parkin (5/8/2013)
dawnbrown243 (5/7/2013)
May 9, 2013 at 9:51 am
avitron2020 (5/7/2013)
May 9, 2013 at 9:33 am
ChrisM@Work (5/8/2013)
curious_sqldba (5/8/2013)
ChrisM@Work (5/8/2013)
curious_sqldba (5/7/2013)
May 9, 2013 at 8:22 am
Phil Parkin (5/7/2013)
This is probably what you meant by "I can program the loading process in another way, I know." but to remove most of the doubt I like to...
May 7, 2013 at 9:19 am
I came up with another solution based on the same mathematical concept as Lynn's, but I think Lynn's is more elegant:
with TestData as (
select datavalue
from (
values
(5.0000016), -- should be 5.01
(6.1000138),...
May 7, 2013 at 9:04 am
Sergiy (5/6/2013)
select * from FK_Table F
WHERE NOT EXISTS (
select * from PK_Table P
where P.PK_Column1 = F.FK_Column1 and P.PK_Column2 = F.FK_Column2
It should give you the entries...
May 7, 2013 at 8:29 am
Hugo Kornelis (5/6/2013)
wolfkillj (5/6/2013)
It bears mention that Microsoft has slated the "timestamp" syntax for deprecation in favor of "rowversion"...
May 6, 2013 at 10:11 am
You can do this with a CHECK constraint that calls a scalar function, although I suspect that this could have a significant impact on performance, especially when inserting a lot...
May 6, 2013 at 9:50 am
Kricky (5/6/2013)
May 6, 2013 at 9:12 am
Good question - I appreciate the QotDs that demonstrate quirky behavior.
It bears mention that Microsoft has slated the "timestamp" syntax for deprecation in favor of "rowversion" as of SQL...
May 6, 2013 at 8:18 am
sotn (5/3/2013)
Unfortunately, I've already examined that option but we cannot really change our erp system easily, so I hoping for an easy 'timestamp' comparison rather than comparing...
May 3, 2013 at 9:52 am
Viewing 15 posts - 331 through 345 (of 567 total)