Viewing 15 posts - 1,636 through 1,650 (of 3,957 total)
Here is my version:
Microsoft SQL Server 2008 (RTM) - 10.0.1600.22 (X64) Jul 9 2008 14:17:44 Copyright (c) 1988-2008 Microsoft Corporation Developer Edition (64-bit) on...
July 29, 2013 at 4:18 am
ChrisM@Work (7/29/2013)
Microsoft SQL Server 2008 R2 (SP2) - 10.50.4000.0 (X64)
Jun 28 2012 08:36:30 Copyright (c) Microsoft Corporation Standard Edition (64-bit)...
July 29, 2013 at 2:37 am
Grenouillaise (7/28/2013)
IF (SELECT count(name) FROM sys.sysobjects WHERE (type = 'P') and name = 'SPNAME') >...
July 28, 2013 at 10:28 pm
Jeff Moden (7/26/2013)
dwain.c (7/24/2013)
WITH Rates (rate) AS (
SELECT -100 UNION ALL SELECT NULL UNION ALL SELECT 0
...
July 28, 2013 at 7:15 pm
Thanks to all for taking a look.
I hesitate to suggest this is a SQL bug, but perhaps the Gods of SQL were asleep at the wheel on that query plan.
Nobody's...
July 28, 2013 at 7:13 pm
May I ask why you need to add 1 millisecond to each row?
In other words, what is the problem you're facing when all of the bulk insert CreatedDates are the...
July 28, 2013 at 6:59 pm
Duplicate post. All answers here please: http://www.sqlservercentral.com/Forums/Topic1478385-392-1.aspx
July 28, 2013 at 6:55 pm
I suggest you look at the following 2 articles and they'll give you the answer you seek:
Cross Tabs and Pivots, Part 1 – Converting Rows to Columns[/url]
July 28, 2013 at 6:53 pm
Erland Sommarskog (7/26/2013)
DECLARE @x xml = '<bookstore>
<book>
<title lang="eng">Harry Potter</title>
<price>29.99</price>
</book>
<book>
...
July 26, 2013 at 6:54 pm
Cadavre - I love the name you gave mine: "COOL MATHS/"
I suspect it might have a bug though where the string ends like -$ (might show 0).
July 26, 2013 at 6:51 pm
And (as ChrisM pointed out to me) it has nothing to do with NULLs:
WITH Tally (n) AS (
SELECT TOP 1000 ROW_NUMBER() OVER (ORDER BY (SELECT NULL))
...
July 26, 2013 at 3:43 am
Perhaps this article will help you: Fuzzy-String Search: Find misspelled information with T-SQL[/url]
July 26, 2013 at 2:59 am
My contribution ain't exactly pretty but might work for you:
with tmp as (
select x = 'some text-1'
union select x = 'some text-123'
union...
July 26, 2013 at 2:49 am
SQLRNNR (7/25/2013)
dwain.c (7/25/2013)
SQLRNNR (7/25/2013)
dwain.c (7/25/2013)
WITH ValidationTables (n, )
SELECT 1, [Key] FROM A
...
July 25, 2013 at 11:05 pm
SQLRNNR (7/25/2013)
dwain.c (7/25/2013)
WITH ValidationTables (n, )
SELECT 1, [Key] FROM A
...
July 25, 2013 at 10:58 pm
Viewing 15 posts - 1,636 through 1,650 (of 3,957 total)