Viewing 15 posts - 9,151 through 9,165 (of 10,144 total)
in the recordset SELECTED for the user, or the server-side table?
December 12, 2008 at 4:59 am
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...
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...
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...
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...
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 !=...
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...
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)...
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...
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...
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',...
December 11, 2008 at 9:03 am
Ian (12/10/2008)
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...
December 11, 2008 at 8:51 am
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...
December 11, 2008 at 7:59 am
Viewing 15 posts - 9,151 through 9,165 (of 10,144 total)