Viewing 15 posts - 4,021 through 4,035 (of 6,397 total)
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
Unless you have custom monitoring in place which captures blocking you will not find the information you require.
August 8, 2012 at 2:00 am
Could you not use something like group policy to install the client at logon time to the machine if its not already installed?
Do you not have any remote software depolyment...
August 8, 2012 at 1:57 am
fakedon63 (8/7/2012)
I already use MySQL so I am already familiar with using SQL
Dont confuse MySQL with MSSQL, they are two very different products and somethings that work in MySQL dont...
August 8, 2012 at 1:53 am
Viewing 15 posts - 4,021 through 4,035 (of 6,397 total)