Viewing 15 posts - 5,491 through 5,505 (of 8,416 total)
Some internal functions, like the one you mention, are only accessible from system stored procedures.
There is a modern way to get the database id. Give me a minute...
March 12, 2010 at 1:08 am
CirquedeSQLeil (3/12/2010)
Hah - Paulpatine spinning like the MCP before Tron obliterates it with the disk - oh yeah.
:laugh: You're getting worse...
March 12, 2010 at 1:03 am
shawndidy (3/12/2010)
Hi Paul white,I've never come across iTVF. what does it mean?
It is just an alias for the result returned by APPLY. Just like T1 in SELECT *...
March 12, 2010 at 1:01 am
CirquedeSQLeil (3/12/2010)
I think the disconnect reconnect method is about the best way to refresh it. It seems to be most consistent for me.
Jason...CTRL + SHIFT + R! :w00t:
March 12, 2010 at 1:00 am
S.K. (3/11/2010)
A little late to the party on this one
There are sometimes multiple pages of replies. Still catches me out occasionally.
Obviously not recommended for production systems, but may get...
March 12, 2010 at 12:58 am
It isn't the problem, but I would recommend using the SQL Native Client driver instead of SQL Server.
Which SQL Server versions (e.g. 2000 and 2005) and instances (default or...
March 12, 2010 at 12:54 am
jmatayoshi (3/11/2010)
both answers 2 and 4 are almost the same
That statement makes my head spin.
March 12, 2010 at 12:22 am
Elliott W (3/11/2010)
I am looking for one more person for the review.
I have some SSIS skillz. Send it to me if you want some abuse 😉
March 12, 2010 at 12:20 am
SELECT iTVF.*
FROM dbo.Quiz Z
CROSS
APPLY (
SELECT TOP (Z.no_to_display)
...
March 12, 2010 at 12:16 am
This is actually slightly more efficient that the TOP/MIN methods:
SELECT U.account,
least = MIN(U.value)
FROM #Sample
UNPIVOT (
...
March 12, 2010 at 12:04 am
We all have a long way to go, Wesley 😉
But thanks!
March 11, 2010 at 9:53 pm
I might do something like this:
USE tempdb;
SET NOCOUNT ON;
GO
IF OBJECT_ID(N'dbo.Respondent_Search', N'U') IS NOT NULL
DROP TABLE dbo.Respondent_Search;
GO
CREATE ...
March 11, 2010 at 9:49 pm
Demonstration code:
-- For demonstration purposes
USE tempdb;
GO
-- Drop tempdb objects
IF OBJECT_ID(N'tempdb.dbo.Products', N'U')
IS NOT NULL
...
March 11, 2010 at 7:50 pm
Viewing 15 posts - 5,491 through 5,505 (of 8,416 total)