Viewing 15 posts - 2,491 through 2,505 (of 14,953 total)
select *
from dbo.MyTable
cross apply dbo.MyUDF(MyTabe.Col1, MyTable.Col2) as MyUDF;
That's Cross Apply pseudo-code. You'll get better examples if you look up "Cross/Outer Apply" in Bing/Google/whatever. MSDN has articles on the...
December 27, 2011 at 7:30 am
I would tend to suspect the application code far more than the database. NVarchar is just fine with extended character sets.
Another possibility is user-input issues. Is your application...
December 27, 2011 at 7:29 am
I would say it depends on what operations you're doing on the data as you retrieve it. Also, what driver you're using for the connection. Quite possibly, you'll...
December 27, 2011 at 7:23 am
Are you familiar with using the Apply operator (Cross Apply and Outer Apply)?
With that, you can "join" a function to a table and pass in the values from the table...
December 27, 2011 at 7:20 am
Are you asking about Join statements in the From clause? You can include way more than 10, without nested queries.
This sounds like a homework/test question. Is it?
December 27, 2011 at 6:52 am
Jeff Moden (12/26/2011)
... do any of you see or have a problem with me writing and publishing an article on how to rapidly build test...
December 27, 2011 at 6:37 am
justforgroups2004 (12/22/2011)
I have two servers 7 and 2005. Never worked with SSIS, but just looked it up, and it appears to be a part...
December 27, 2011 at 6:20 am
Dev (12/23/2011)
In my case I also have 2 post-graduate degrees, one of which pertains managing a business and understanding these types of things. Like a techy MBA :)...
December 27, 2011 at 6:17 am
Sapen (12/22/2011)
December 27, 2011 at 6:12 am
stourault (12/22/2011)
December 22, 2011 at 1:35 pm
Lutz, that won't get anything that's in both places (if that's possible), nor will it get anything that's in Bins but not in Lots (if that's possible). At very...
December 22, 2011 at 1:22 pm
A trace might be easier on your server than a trigger, and will capture the same kind of information.
A non-replicated transaction is a non-replicated transaction, whether it's an insert (missing...
December 22, 2011 at 1:21 pm
Does this essentially get you what you need?
;
WITH LB
AS (SELECT PartCode,
...
December 22, 2011 at 1:15 pm
David Moutray (12/22/2011)
GSquared (12/22/2011)
And I dropped out of both kindergarden and college! But I've got a well-paid DBA job anyway.
Heh. I'm glad I'm not the only one! ;-)...
December 22, 2011 at 12:47 pm
I started with a book, SQL Server Bible, way back when. That worked for me.
December 22, 2011 at 12:08 pm
Viewing 15 posts - 2,491 through 2,505 (of 14,953 total)