Viewing 15 posts - 76 through 90 (of 2,037 total)
Hi
(and welcome at SSC 🙂 )
As a general answer: It depends.
It's hard (impossible?) to answer this question. A database server cannot be compared to something like .NET/C++/Java code which always...
January 30, 2010 at 12:32 pm
Alvin Ramard (1/30/2010)
Fortunately, most of the noise comes from just a couple of people.
Yup, this makes it easy to skip some tweets.
(BTW: One non-technical thing I really love is Lynn's...
January 30, 2010 at 12:25 pm
Hi % 🙂
I like Twitter, since it works like a proactive search engine for technical stuff. Sure, there is a lot of useless noise (sometimes provided by myself :-P) but...
January 30, 2010 at 11:49 am
@jack-2 Corbett
Please correct me if I'm wrong...
When loading many data, Lookup Transformation might become a performance issue, doesn't it? At least if keys cannot be cached.
I'd prefer a...
January 30, 2010 at 11:40 am
Without any errors, the files should be copied. Maybe a rights problem? What do you get if you execute the following statement:
EXEC master..xp_cmdshell 'DIR \\OBBEVAER\IT_Reports\DBA\'
January 30, 2010 at 11:28 am
If you're fine with a single-user database without rich T-SQL features, try SQL Server Compact. Otherwise download and install SQL Server Express, as mentioned by Gail.
Greets
Flo
January 30, 2010 at 11:26 am
Hi
You can use a temp table to catch both results in separate executions.
Greets
Flo
January 30, 2010 at 11:20 am
Another option is to use Service Broker. Maybe have a look to BOL.
Greets
Flo
January 30, 2010 at 11:17 am
Hi
To load XML from file into a variable use OPENROWSET:
DECLARE @blob XML;
SELECT @blob = BulkColumn
FROM OPENROWSET(
BULK N'C:\Temp\test.xml'
...
January 30, 2010 at 4:20 am
Hi
You have to specify a ROOT element:
SELECT ProductModelID, Name
FROM Production.ProductModel
WHERE ProductModelID=122
or ProductModelID=119
FOR XML RAW, ROOT('MyRoot')
Greets
Flo
January 30, 2010 at 3:58 am
Hi conradude
Did you check the execution plan? I get a index scan.
Greets
Flo
January 29, 2010 at 5:50 am
Your approach should work, doesn't it?
Maybe this could be a better performance:
SELECT
MAX(
CASE WHEN field1 >...
January 28, 2010 at 1:48 pm
Viewing 15 posts - 76 through 90 (of 2,037 total)