Viewing 15 posts - 9,031 through 9,045 (of 10,143 total)
nabajyoti.b (1/2/2009)
i am well aware of what SSIS can do.But i wanted to direct two variables to an excel sheet.
In that case, the article will show you how, with examples.
For fast, accurate and documented assistance in answering your questions, please read this article.
Understanding and using APPLY, (I) and (II) Paul White
Hidden RBAR: Triangular Joins / The "Numbers" or "Tally" Table: What it is and how it replaces a loop Jeff Moden
January 2, 2009 at 4:40 am
venki.ffcl (1/2/2009)
dear friends,Can i use if condition in function ?
Please give me a example
thank you
Can you explain how you expect to benefit from putting a simple query into a function?...
For fast, accurate and documented assistance in answering your questions, please read this article.
Understanding and using APPLY, (I) and (II) Paul White
Hidden RBAR: Triangular Joins / The "Numbers" or "Tally" Table: What it is and how it replaces a loop Jeff Moden
January 2, 2009 at 4:38 am
nabajyoti.b (1/2/2009)
suppose i have two valieables @s-2 and @b-2
normally i use select @a to display the value...
For fast, accurate and documented assistance in answering your questions, please read this article.
Understanding and using APPLY, (I) and (II) Paul White
Hidden RBAR: Triangular Joins / The "Numbers" or "Tally" Table: What it is and how it replaces a loop Jeff Moden
January 2, 2009 at 4:18 am
larsosman56 (1/1/2009)
My first query returns a result set, but I want to pass...
For fast, accurate and documented assistance in answering your questions, please read this article.
Understanding and using APPLY, (I) and (II) Paul White
Hidden RBAR: Triangular Joins / The "Numbers" or "Tally" Table: What it is and how it replaces a loop Jeff Moden
January 2, 2009 at 3:56 am
Adi Cohn (1/2/2009)
For fast, accurate and documented assistance in answering your questions, please read this article.
Understanding and using APPLY, (I) and (II) Paul White
Hidden RBAR: Triangular Joins / The "Numbers" or "Tally" Table: What it is and how it replaces a loop Jeff Moden
January 2, 2009 at 3:41 am
sarran.achari (1/1/2009)
Thanks for your help Gurus.
You're welcome. Is your problem solved?
For fast, accurate and documented assistance in answering your questions, please read this article.
Understanding and using APPLY, (I) and (II) Paul White
Hidden RBAR: Triangular Joins / The "Numbers" or "Tally" Table: What it is and how it replaces a loop Jeff Moden
January 1, 2009 at 5:21 am
I reckon this should do it.
[font="Courier New"]DROP TABLE #Temp
CREATE TABLE #Temp ([Month] CHAR(8), Country CHAR(2), [Tran] INT)
INSERT INTO #Temp ([Month], Country, [Tran])
SELECT 'Jul 2003', 'US', 1271 UNION ALL
SELECT 'Jun 2003',...
For fast, accurate and documented assistance in answering your questions, please read this article.
Understanding and using APPLY, (I) and (II) Paul White
Hidden RBAR: Triangular Joins / The "Numbers" or "Tally" Table: What it is and how it replaces a loop Jeff Moden
January 1, 2009 at 4:27 am
Can you post a sample of what you expect your output to look like?
For fast, accurate and documented assistance in answering your questions, please read this article.
Understanding and using APPLY, (I) and (II) Paul White
Hidden RBAR: Triangular Joins / The "Numbers" or "Tally" Table: What it is and how it replaces a loop Jeff Moden
January 1, 2009 at 3:55 am
Brandie Tarvin (12/31/2008)
ACK!I can't spell? THE HORROR!!!
Thanks, Andrew. I'll get that fixed. @=)
Good lord Brandie, how do you find the time to do all of this stuff?
It's a...
For fast, accurate and documented assistance in answering your questions, please read this article.
Understanding and using APPLY, (I) and (II) Paul White
Hidden RBAR: Triangular Joins / The "Numbers" or "Tally" Table: What it is and how it replaces a loop Jeff Moden
December 31, 2008 at 5:05 am
josemyj (12/30/2008)
So they are randomly chosen from a...
For fast, accurate and documented assistance in answering your questions, please read this article.
Understanding and using APPLY, (I) and (II) Paul White
Hidden RBAR: Triangular Joins / The "Numbers" or "Tally" Table: What it is and how it replaces a loop Jeff Moden
December 30, 2008 at 8:51 am
How does SQL Server get these values? One at a time? As a file/cursor?
For fast, accurate and documented assistance in answering your questions, please read this article.
Understanding and using APPLY, (I) and (II) Paul White
Hidden RBAR: Triangular Joins / The "Numbers" or "Tally" Table: What it is and how it replaces a loop Jeff Moden
December 30, 2008 at 8:30 am
josemyj (12/30/2008)
No 4000 columns... Only...
For fast, accurate and documented assistance in answering your questions, please read this article.
Understanding and using APPLY, (I) and (II) Paul White
Hidden RBAR: Triangular Joins / The "Numbers" or "Tally" Table: What it is and how it replaces a loop Jeff Moden
December 30, 2008 at 6:32 am
josemyj (12/30/2008)
And sorry if my english is confusing, not native language.
No need to apologise, we'll get there.
Your first post said you wanted a temporary table or CTE to provide consecutive...
For fast, accurate and documented assistance in answering your questions, please read this article.
Understanding and using APPLY, (I) and (II) Paul White
Hidden RBAR: Triangular Joins / The "Numbers" or "Tally" Table: What it is and how it replaces a loop Jeff Moden
December 30, 2008 at 5:24 am
So...you need a simple list of integers, from 1 to about 2000? Is there anything else?
For fast, accurate and documented assistance in answering your questions, please read this article.
Understanding and using APPLY, (I) and (II) Paul White
Hidden RBAR: Triangular Joins / The "Numbers" or "Tally" Table: What it is and how it replaces a loop Jeff Moden
December 30, 2008 at 4:33 am
josemyj (12/30/2008)
¿What do you think about this?;with CTETable (Field) as
(
Select 1 union all Select 2 union all Select 3 ... union all Select n)
)
select * from CTETable;
This...
For fast, accurate and documented assistance in answering your questions, please read this article.
Understanding and using APPLY, (I) and (II) Paul White
Hidden RBAR: Triangular Joins / The "Numbers" or "Tally" Table: What it is and how it replaces a loop Jeff Moden
December 30, 2008 at 4:06 am
Viewing 15 posts - 9,031 through 9,045 (of 10,143 total)