Uncategorized

How to set the Row Limit in SSRS report

Implement the Query rowLimit parameter: <RSSharePointList xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xmlns:xsd=”http://www.w3.org/2001/XMLSchema“>   <ListName>Help Desk Requests</ListName> <Query> <Parameters>     <Parameter Name=”rowLimit”>         <DefaultValue>9999</DefaultValue>     </Parameter>   </Parameters> </Query>  <ViewFields>     […]

Ubuntu

Install and configure apache2 with multiple hosts

Assuming Apache mod_rewrite module is enabled: sudo a2enmod rewrite Create the needed website directories: mkdir /var/www/brianwilliams.pro mkdir /var/www/allaboutyoushelby.com Configure Apache: sudo vi /etc/apache2/sites-available/brianwilliams.pro <VirtualHost *:80> […]