Viewing 15 posts - 4,021 through 4,035 (of 6,401 total)
select top 1 cmp_id from CSR_COMPLEMENT
where DOS_ID = (select DOS_ID from CSR_DOSSIER where DOS_NODE = @DOS_NODE) order by cmp_numordre desc
Might be missing something but if you only want 1 cmp_id...
August 8, 2012 at 8:41 am
Brandie Tarvin (8/8/2012)
Ray K (8/8/2012)
JAZZ Master (8/8/2012)
rhythmk (8/7/2012)
SQLRNNR (8/7/2012)
Lynn Pettis (8/7/2012)
Lynn Pettis (8/7/2012)
MontyPython
Flying
Aeroplane
Helicopter
Dirigible
Ornithopter.
Festo SmartBird
August 8, 2012 at 7:48 am
dwain.c (8/7/2012)
Lynn Pettis (8/7/2012)
August 8, 2012 at 7:45 am
You can find the RSClientPrint........cab file in the SSRS installation location.
Something like C:\Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVER\Reporting Services\ReportServer\bin
Where you should find RSClientPrint-ia64.cab, RSClientPrint-x64.cab and RSClientPrint-x86.cab
Then you should be able to install...
August 8, 2012 at 6:49 am
Well something or someone has deleted the dll or a referencing dll or the dll's are not registered.
What version of SQL and Service Pack level are you on?
I would recommend...
August 8, 2012 at 4:50 am
cant help you on that, thought it would have to be manually 1 by 1 as you will need to open the files and save them as jpg then re-upload
August 8, 2012 at 4:07 am
is that in the SQL server event log or the windows log?
August 8, 2012 at 4:01 am
what errors do you get in the windows application log for the agent service?
August 8, 2012 at 3:53 am
Yeah its fairly speedy that.
Another option to do it based on my sample data is
SELECT
t1.ID,
t1.Status,
t1.Time
FROM
@sometable t1
INNER JOIN
(
SELECT
ID,
MAX(Time) as maxtime
FROM
@sometable t2
GROUP BY
ID
) as dev1
ON
t1.ID = dev1.ID
AND
t1.time = dev1.maxtime
ORDER BY
1
Running both CTE...
August 8, 2012 at 3:21 am
Well more than likely was inserted as BMP, so you would need to extract them and convert them in a picture editor and re-upload them to the DB.
August 8, 2012 at 3:07 am
declare @sometable table (ID int, Status nvarchar(50), [time] datetime)
insert into @sometable values (1,'Started','2012-02-02 07:00'),
(1,'Running','2012-02-02 08:30'),
(1,'Completed','2012-02-02 09:30'),
(2,'Started','2012-02-02 04:15'),
(2,'Running','2012-02-02 05:00')
;with cte as
(
SELECT
ROW_NUMBER() OVER(PARTITION BY ID ORDER BY DT DESC) AS RowNum,
*
FROM
@SomeTable
)
SELECT
ID,
Status,
Time
FROM
CTE
WHERE
RowNum =...
August 8, 2012 at 3:05 am
So time is actually a datetime column?
Can you provide a true representation of the data?
August 8, 2012 at 2:53 am
what happens should the process run over multiple days
eg.
Process 1 starts at 08/08/2012 23:50
Process 1 finishes at 09/08/2012 00:10
how do you differentiate what is yesterday and what is tomorrow?
August 8, 2012 at 2:49 am
Thanks Lynn, always forget about diff backups to reinitialise, force of habbit thing I think.
August 8, 2012 at 2:30 am
All our user front ends are done in ASP.NET 4, but as long as you can code a connection string to SQL in the application, then you can pretty much...
August 8, 2012 at 2:27 am
Viewing 15 posts - 4,021 through 4,035 (of 6,401 total)