Viewing 15 posts - 9,166 through 9,180 (of 10,144 total)
Lynn Pettis (12/11/2008)
December 11, 2008 at 7:27 am
Sarfaraj Ahmed (12/11/2008)
nameX VARCHAR(10),
moneyX int
);
INSERT INTO temp VALUES('a',10);
INSERT INTO temp VALUES('a',5);
INSERT INTO temp VALUES('a',15);
INSERT INTO temp VALUES('b',5);
INSERT INTO temp VALUES('b',20);
My question is:
How can I calculate the average maximum...
December 11, 2008 at 7:05 am
Think I'll walk home across the fields.
December 11, 2008 at 6:31 am
rcr69er (12/11/2008)
HeyThanks for that!
How would you do it the first way?
Sorry I'm quite new to SSRS!
Thanks
No problem, here ya go...
[font="Courier New"]DECLARE @ReasonCode VARCHAR(100)
SET @ReasonCode = '1,2,4,8,16'
DROP TABLE #Reasons
CREATE TABLE #Reasons...
December 11, 2008 at 6:26 am
Jeff Moden (12/11/2008)
December 11, 2008 at 5:44 am
The two obvious choices are:
Resolve the values in @ReasonCode into a table or table variable, or convert the whole lot into dynamic sql.
There are some nifty methods of doing the...
December 11, 2008 at 5:34 am
sujiakm (12/11/2008)
&
select * from OPENQUERY([system2-PC\sqlserver2005],'select * from sysobjects')
Both Works fine..
I have create the linked server on the default instance as [system2-PC\sqlserver2005]
and I want to run a...
December 11, 2008 at 4:53 am
Start simple...does this work?
select * from OPENQUERY([system2-PC\sqlserver2005],'select getdate()')
Remember, OPENQUERY requires that the linked server is already set up, can you confirm that it is by querying against it directly?
December 11, 2008 at 4:08 am
Reckon this should do it:
[font="Courier New"]--Create table with currency rates:
DROP TABLE #tblRates
CREATE TABLE #tblRates(
[currency_id] [int] IDENTITY(1,1) NOT NULL,
[currency_type] [varchar](10) NULL,
[currency_rate] [decimal](18, 6) NULL,
[rate_date] [datetime] NULL
)
INSERT INTO #tblRates
SELECT 'GBP',...
December 11, 2008 at 3:55 am
So, you want to get the closest date to your reference date @Date_Reported from table A - then get the closest match to the date found in table A, in...
December 11, 2008 at 3:04 am
Try
ORDER BY ABS(DATEDIFF(dd, rate_date, @rate_date))
If there are several rows with the same rate_date then you might need the result from DATEDIFF in hours or even minutes.
December 11, 2008 at 2:49 am
Lynn Pettis (12/10/2008)
December 10, 2008 at 3:20 pm
Only one problem there Kelvin - you've restricted it to a single ProductID.
December 10, 2008 at 10:20 am
Hi Mark
This requirement isn't unusual, and won't take long to fix. We do need a level playing field though, which you, and any contributors to this thread, can work to...
December 10, 2008 at 10:09 am
Garadin (12/9/2008)
Garadin (12/9/2008)
Although it does seem like it might be more efficient due to the derived tables, the execution plans are virtually identical (once I add the aliases to your...
December 10, 2008 at 10:04 am
Viewing 15 posts - 9,166 through 9,180 (of 10,144 total)