Viewing 15 posts - 3,031 through 3,045 (of 7,636 total)
Peso (4/8/2009)
1 7 9
NULL 6 ...
April 8, 2009 at 11:37 am
I believe it's 23.5%. 🙂
And definitely not fair, but within the rules.
April 8, 2009 at 10:20 am
Yeah, my data follows the rules, but plays havoc with any simple distribution assumptions.
😀
April 8, 2009 at 9:46 am
Fair warning: this is some truly wicked data. Pretty close to worst case.
April 8, 2009 at 8:57 am
One problem is that you guys are testing against Easy data. Now why don't you try some HARD data:
CREATE TABLE SortedColumnsTestData
(
id INT NOT NULL PRIMARY KEY CLUSTERED,
...
April 8, 2009 at 8:56 am
Probably either of these:
SELECT CAST(CAST(XMLMessage as VARCHAR(MAX)) AS XML).value('(//*:CompanyCode)[1]', 'NVarchar(50)')
, CAST(CAST(XMLMessage as VARCHAR(MAX)) AS XML).query('(//*:CompanyCode/text())')
from DocumentSource
April 7, 2009 at 11:01 pm
You know what you do when you Presume? You make a Pres out of U and Me.
No, wait. That's not right ...
April 7, 2009 at 10:42 pm
I think his real name is Foxy Jazz.
😀
April 7, 2009 at 10:32 pm
This isn't valid XML. For one thing, the "NS8" prefix is never declared.
April 7, 2009 at 10:30 pm
That's from WROX. And I suggest that you get the 2008 version instead of the 2005 book.
April 7, 2009 at 9:33 pm
You can either use {DB_Name}.INFORMATION_SCHEMA.TABLES or create a view like this:
CREATE View vwAllTables as
Select 'DBOne' as [DatabaseName], * From [DatabaseOne].sys.Tables
UNION ALL Select 'DBTwo' as...
April 7, 2009 at 9:30 pm
If you make your packages location-unaware, you can just Xopy them wherever you want.
April 7, 2009 at 9:11 pm
dave b (4/7/2009)
Let me clarify what I'm trying to do. I have a column that has a Timestamp (epoch unix timestamp) datatype. I need to create...
April 7, 2009 at 7:59 pm
Viewing 15 posts - 3,031 through 3,045 (of 7,636 total)