Viewing 15 posts - 9,151 through 9,165 (of 10,143 total)
lemonsqueezy101 (12/12/2008)
From what I can gather, you're saying I can use the value I have that was entered via the DDL, check...
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 12, 2008 at 3:39 am
lemonsqueezy101 (12/12/2008)
I already have the currency name and currency symbol list in a table with the Currency Name populating the drop down list the user will select from.
This DDL...
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 12, 2008 at 3:31 am
lemonsqueezy101 (12/12/2008)
I have a requirement to store the currency name and the currency symbol for a record inserted by a user. I only want to have the user select...
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 12, 2008 at 3:10 am
Here's what the code looks like when it's given a bit of a cleanup:
[font="Courier New"]SELECT T1.PROJ_ID + SPACE(1) + T2.PROJ_NAME AS Project, -- fn CONCAT is an XQUERY function
T4.org_name...
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 12, 2008 at 1:55 am
sunil.si (12/12/2008)
@query = 'select empID from EducationDepartment where DateDiff(hh, checkInTime, getdate()) > 2 and userPriority = 1 and status !=...
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 12, 2008 at 12:42 am
sujiakm (12/11/2008)
.. in this query I am trying to run an INSERT cmd , which inserts the data collected at the LinkedServer into a local...
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 12, 2008 at 12:29 am
pushalydan (12/11/2008)
I have a temp table called temp_phone_interval, when I run this query:
select max(currdate) as rpt_date, sum(ivr2q) as total_calls, sum(q2assagt+q2agt)as ans_calls, sum(q2assagt+q2agt+qabn)/sum(ivr2q)...
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 11, 2008 at 2:14 pm
jeffrey_bryant (12/11/2008)
I went with the original solution. It got what I needed but am going to try out Jeff's cursor'less version just to see how it works.
Thanks for the...
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 11, 2008 at 9:52 am
Lynn Pettis (12/11/2008)
Why would I do that? I am a born and raised Coloradoian. I love it here, it's Gods...
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 11, 2008 at 9:05 am
Josh Turley (12/11/2008)
SELECT 'Company B', 'Tradeshow', '10/03/05' UNION ALL
SELECT 'Company B', 'Magazine', '12/05/04' UNION ALL
SELECT 'Company C', 'Company A', '09/05/06' UNION ALL
SELECT 'Company C',...
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 11, 2008 at 9:03 am
Ian (12/10/2008)
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 11, 2008 at 8:58 am
Like this?
SET DATEFORMAT MDY
CREATE TABLE #referrals (company VARCHAR(10), referral VARCHAR(20), referral_date DATETIME)
INSERT INTO #referrals (company, referral, referral_date)
SELECT 'Company A', 'Web', '01/01/2006' UNION ALL
SELECT 'Company B', 'Tradeshow', '10/03/05' UNION ALL
SELECT 'Company...
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 11, 2008 at 8:51 am
Lynn, have you considered moving to Ohio[/url]?
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 11, 2008 at 8:38 am
Nomvula (12/10/2008)
i'm not sure whether it's possible, i have data in my excel sheet of which i need to create a script from my sql database and join the fields...
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 11, 2008 at 7:59 am
Lynn Pettis (12/11/2008)
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 11, 2008 at 7:27 am
Viewing 15 posts - 9,151 through 9,165 (of 10,143 total)