SSRS Scripts

Find reports that are not mapped to a data source: SELECT ItemPath = c.[Path], ItemName = c.Name, DatasourceRefrenceName=ds.Name FROM [Catalog] AS c INNER JOIN DataSource AS ds ON ds.ItemID = c.ItemID WHERE ds.Link IS NULL AND ds.Extension IS NULL order by ItemPath    

Read more

SQL Management Studio – Windows Authentication – different domain

Sometimes you need to use windows authentication to SQL using SQL Management Studio, but the your domain and or username is different than who you are currently logged into you machine as.  In that case run the following command from a Command Prompt. runas /netonly /user:domainusername “C:Program Files (x86)Microsoft SQL Server100ToolsBinnVSShellCommon7IDESsms.exe”

Read more

DocuSign

I recently got to work on a pretty cool project for a client.  They needed to have their employee’s electronically sign their time cards which were generated by a SSRS report exported as a PDF.  To accomplish this we used DocuSign which has a really good SOAP API and was really easy to work with. […]

Read more