Viewing 13 posts - 1 through 13 (of 13 total)
Yes,
you can use function in report with parameter @user (its default in ssrs). In database where you have data add mapping data to user and at report visibility...
September 24, 2018 at 10:11 am
Yes, i found it, must be "table options"
March 31, 2016 at 1:11 am
Maybe try this:
Tables:
SELECT OBJECT_NAME(OBJECT_ID) AS DatabaseName, last_user_update,*
FROM sys.dm_db_index_usage_stats
WHERE database_id = DB_ID( 'db_name')
AND OBJECT_ID=OBJECT_ID('table_name')
Procedures:
SELECT * FROM sys.objects
WHERE TYPE = 'P' AND DATEDIFF(D,modify_date, GETDATE()) < 7
Databases:
WITH agg AS
(
...
February 10, 2016 at 4:26 am
On standard version you can create procedure with coursor and update data (set parameters) and run subscriptions
February 10, 2016 at 4:22 am
Jeff Moden (1/26/2016)
January 26, 2016 at 11:21 pm
Read it:
"Script out the objects from the newer database and then usp a bcp process to extract the data from the newer database and import it into the...
January 26, 2016 at 6:27 am
You must first get list of services name
sc query type= service state= all |find "SQL" |find /V "DISPLAY_NAME" |find /V "AD" | find /V "Writer"
here is result from my uat
SERVICE_NAME:...
January 26, 2016 at 5:27 am
Maybe like that:
sc query MSSQLSERVER
or
Wmic service where (PathName like '%Binn\\sqlservr%') get caption, name, startmode, state, PathName, ProcessId
January 26, 2016 at 5:04 am
You can check status of subscription like this:
SELECT DISTINCT
E.NAME ,
E.PATH ,
D.DESCRIPTION ,
LASTSTATUS ,
EVENTTYPE ,
LASTRUNTIME ,
DATE_CREATED ,
...
January 20, 2016 at 5:08 am
I change expression to: =SWITCH(sum(Fields!CARMEN.Value)=0,True,False,InStr(JOIN(Parameters!POKAZ.Value,","),"CARMEN")>0,False,True) and it works
November 28, 2014 at 1:48 am
Yes 🙂
1 create manualy subscription and run it
2 create job whit command eg:
-- This procedure get data from table [name and email adres] then update subscription and run subscription, wait...
August 1, 2014 at 3:07 am
You can try it:
Search subscription id for your report
SELECT
A.SUBSCRIPTIONID
FROM REPORTSERVER.DBO.REPORTSCHEDULE A
JOIN MSDB.DBO.SYSJOBS B
ON CAST(A.SCHEDULEID AS VARCHAR(40)) = B.NAME
JOIN REPORTSERVER.DBO.REPORTSCHEDULE C
ON B.NAME = CAST(C.SCHEDULEID...
April 28, 2011 at 4:35 am
Viewing 13 posts - 1 through 13 (of 13 total)