Viewing 15 posts - 1,246 through 1,260 (of 8,416 total)
Lowell (1/10/2012)
January 10, 2012 at 5:48 pm
sqlfriends (1/10/2012)
could you explain a little bit about what this not exists, and intersect does.
So glad you asked:
January 10, 2012 at 5:46 pm
Small comfort, but it will be possible in SQL Server 2012, using the new TRY_CONVERT function:
...returns NULL.
January 10, 2012 at 5:41 pm
Isn't it as simple as:
SELECT
*
FROM #Students AS s
WHERE
s.[Year] = 2009
AND NOT EXISTS
(
...
January 10, 2012 at 5:33 pm
Not within a function, no. Functions do not allow TRY...CATCH blocks, so the normal trick of converting to untyped XML inside such a block cannot be used. Consider...
January 10, 2012 at 5:17 pm
They're in the keys folder, and also have a different icon in the columns folder.
January 10, 2012 at 5:02 pm
January 10, 2012 at 4:58 pm
Personal preference to some extent, but I prefer this:
MERGE domCategory AS target
USING staging.dbo.Category AS source ON
target.CategoryID = source.CategoryID
WHEN MATCHED
AND NOT EXISTS...
January 10, 2012 at 4:38 pm
What's the definition of the destination table?
January 10, 2012 at 12:39 pm
sami.sqldba (1/10/2012)
I am new to merge statement so need your help in making it better understanding for my task
In addition to Patrick's example, take a look at the other questions...
January 10, 2012 at 12:28 pm
winston Smith (1/10/2012)
January 10, 2012 at 12:24 pm
SQLRNNR (1/10/2012)
I am curious what you guys think makes 2008 AM worse than 2005 AM
The design, implementation, and performance mostly 😀
January 10, 2012 at 12:12 pm
winston Smith (1/10/2012)
I have narrowed it down to the 355th row in the table. But this issue doesnt indicate a data problem, it indicates a database/instance/server configuration difference.
It's often DATEFORMAT...
January 10, 2012 at 12:10 pm
Gianluca Sartori (1/10/2012)
Don't mistreat it that way: it was almost usable in SQL 2005. Something went wrong thereafter.
Almost usable, perhaps, at a stretch. 2008 was a big step back...
January 10, 2012 at 12:03 pm
Gianluca Sartori (1/10/2012)
Activity what? 😀
Well exactly. The primary motivation for Adam writing WIA was the awfulness that is Activity Monitor.
January 10, 2012 at 11:12 am
Viewing 15 posts - 1,246 through 1,260 (of 8,416 total)