Viewing 15 posts - 1,936 through 1,950 (of 3,670 total)
Paul White NZ (11/22/2010)
Since this is in the SQL Server 2008 forum, you could also use bulk-logged INSERT...SELECT then ALTER TABLE...SWITCH.
I thought SWITCH only worked in Enterprise Edition?
If you have...
November 23, 2010 at 2:11 am
In the rare cases when I've felt the need for RBAR I've found that in some cases cursors are faster than WHILE loops but only when I don't have to...
November 19, 2010 at 3:44 pm
I wrote up my thoughts on MPP appliances earlier this year http://www.sqlservercentral.com/articles/MPP/70845/.
They are not a marketing hype thing. Green plum has been bought by EMC, Neteeza has been bought...
November 19, 2010 at 4:57 am
Another easy mistake to make is to put a clustered index on the view that conflicts with the clustered index in the base tables. I now hold the world...
November 16, 2010 at 3:21 pm
grahamc (11/15/2010)
November 16, 2010 at 3:18 pm
There are subtle differences between the different RDBMS's that mean chop and change may not be as cheap as it should be.
You could be faced with quite a bit more...
November 14, 2010 at 10:06 am
I've been trying to get people out of the habit of using != but they're just not buying my "<> is more readable". Do you have another reason to...
November 14, 2010 at 9:58 am
If you have to build application code to scrub nulls then surely it would have been better not to have them in the first place. Surely allowing nulls just...
November 12, 2010 at 11:54 am
WHERE s.column >'' will be marginally more efficient than WHERE s.column<>''
Nulls are sometime necessary, for example if I have a DrivingConvictions table in a car insurance database I might have
DriverID
OffenceCode
PenaltyPoints
IllegalSubstanceReading
If...
November 11, 2010 at 12:34 pm
This is on my list of "stupid things no-one in their right mind would try" and I apologise to any DBA for revealing how you do this.
EXEC sp_addlinkedserver 'ExcelSource',
...
November 11, 2010 at 12:26 pm
BASIC = bodgers and simpletons incomprehensible cobblers.
November 11, 2010 at 11:52 am
Yes, though some of the newer SQL2008 options won't appear in the object browser tree.
November 10, 2010 at 1:07 pm
With clustering you have 2 or more physical SQL Servers accessing a shared disk but appearing as one. In the event of one server being unavailable the cluster will...
November 10, 2010 at 1:05 pm
At a guess you are using NVARCHAR and NCHAR rather than VARCHAR and CHAR fields.
the N... data type fields take twice the space of the VARCHAR/CHAR equivalents.
There is an added...
November 10, 2010 at 12:57 pm
Viewing 15 posts - 1,936 through 1,950 (of 3,670 total)