 




<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>IT Answers &#187; SQL Server Report Builder</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/tag/sql-server-report-builder/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers</link>
	<description></description>
	<lastBuildDate>Thu, 23 May 2013 08:15:05 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Oracle 10g terminated_with_error</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/terminated_with_error/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/terminated_with_error/#comments</comments>
		<pubDate>Sun, 13 Feb 2011 11:58:08 +0000</pubDate>
		<dc:creator>K1970</dc:creator>
				<category><![CDATA[Oracle 10g]]></category>
		<category><![CDATA[Oracle 10g error messages]]></category>
		<category><![CDATA[SQL Server Report Builder]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[while iam running a 10g report using the following code : declare   repid REPORT_OBJECT;   v_rep VARCHAR2(100);   rep_status VARCHAR2(50);  BEGIN   repid := FIND_REPORT_OBJECT(&#8216;REPORT1&#8242;);   SET_REPORT_OBJECT_PROPERTY(repid, REPORT_server, &#8216;rep_app_oracle_forms&#8217;);   SET_REPORT_OBJECT_PROPERTY(repid, REPORT_DESFORMAT, &#8216;HTML&#8217;);   v_rep := RUN_REPORT_OBJECT(repid);   rep_status := REPORT_OBJECT_STATUS(v_rep);   message(rep_status);   message(rep_status);   WHILE rep_status in (&#8216;RUNNING&#8217;,'OPENING_REPORT&#8217;,'ENQUEUED&#8217;)   LOOP    rep_status := report_object_status(v_rep);   END LOOP;   IF rep_status = &#8216;FINISHED&#8217; THEN    &#8211;Display report    WEB.Show_Document(&#8216;/reports/rwservlet/getjobid&#8217; &#124;&#124;substr(v_rep,instr(v_rep,&#8217;_',-1)+1)&#124;&#124; [...]]]></description>
				<content:encoded><![CDATA[<p>while iam running a 10g report using the following code :<br/><br/> declare   repid REPORT_OBJECT;   v_rep VARCHAR2(100);   rep_status VARCHAR2(50);  BEGIN   repid := FIND_REPORT_OBJECT(&#8216;REPORT1&#8242;);   SET_REPORT_OBJECT_PROPERTY(repid, REPORT_server, &#8216;rep_app_oracle_forms&#8217;);   SET_REPORT_OBJECT_PROPERTY(repid, REPORT_DESFORMAT, &#8216;HTML&#8217;);   v_rep := RUN_REPORT_OBJECT(repid);   rep_status := REPORT_OBJECT_STATUS(v_rep);   message(rep_status);   message(rep_status);   WHILE rep_status in (&#8216;RUNNING&#8217;,'OPENING_REPORT&#8217;,'ENQUEUED&#8217;)   LOOP    rep_status := report_object_status(v_rep);   END LOOP;   IF rep_status = &#8216;FINISHED&#8217; THEN    &#8211;Display report    WEB.Show_Document(&#8216;/reports/rwservlet/getjobid&#8217; ||substr(v_rep,instr(v_rep,&#8217;_',-1)+1)|| &#8216;?destype=cache&#038;desformat=pdf/html&#038;server=&#8217; || &#8216;rep_app_oracle_forms&#8217;, &#8216;_blank&#8217;);   ELSE    message(&#8216;Error&#8230;&#8217;);   END IF;  END;<br/><br/> an error message appears : unable to run report and the report status becomes terminated_with_error<br/><br/> so please send me why it happens and how to solve it<br/><br/></p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/terminated_with_error/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>SQL Server Report Builder: total at the bottom of the group</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/i-want-the-total-at-the-bottom-of-the-group/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/i-want-the-total-at-the-bottom-of-the-group/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 15:51:18 +0000</pubDate>
		<dc:creator>Waynefmck</dc:creator>
				<category><![CDATA[Report Builder 9.0]]></category>
		<category><![CDATA[Report Builder 9.0.4.0.33]]></category>
		<category><![CDATA[SQL Server Report Builder]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I am writing a report that breaks on the first 4 fields. That part is working fine. I also want a count for each Group (the 4 fields), and a grand total. Since I want to break on all 4 fields as if they are one combined field, I made a concatenated column (called Break_key) [...]]]></description>
				<content:encoded><![CDATA[<p>I am writing a report that breaks on the first 4 fields.  That part is working fine.  I also want a count for each Group (the 4 fields), and a grand total.  Since I want to break on all 4 fields as if they are one combined field, I made a concatenated column (called Break_key) and had the report total on that.</p>
<p>I was surprised when the count appeared at the top of each group, rather than at the bottom.  The grand total is at the very bottom of the report, as I would have thought.  How can I get the sub-totals at the bottom, rather than the top?</p>
<p>Thanks, Wayne</p>
<p>Report Builder 9.0.4.0.33</p>
<p>My query:</p>
<p>select distinct </p>
<p>      fs.FUNDING_SOURCE ,<br />
      lpad(l.circuit, 2, &#8217;0&#8242;)     circuit,<br />
       l.DEPARTMENT  ,<br />
       l.REIMB_TYPE   ,</p>
<p>       p.POSITION_NO  ,<br />
       decode (p.position_type, &#8216;F&#8217;, &#8216;Full&#8217;, &#8216;S&#8217;, &#8216;Shared&#8217;)  position_type ,<br />
       ph.phasein,<br />
       (case ph.status<br />
              when &#8216;F&#8217; then &#8216;Filled&#8217;<br />
              when &#8216;H&#8217; then &#8216;Hold&#8217;<br />
              when &#8216;V&#8217; then &#8216;Vacant&#8217;<br />
              when &#8216;Z&#8217; then &#8216;Frozen&#8217;<br />
              else &#8216; &#8216; end)          Position_Status,<br />
      p.position_active,  </p>
<p>       ph.abbrev_ttl  title ,<br />
       ph.aoic_code ,</p>
<p>      fs.FUNDING_SOURCE||lpad(l.circuit, 2, &#8217;0&#8242;)||l.DEPARTMENT||l.REIMB_TYPE  Break_key</p>
<p>from position p,<br />
     pos_history ph,<br />
     location l,<br />
     funding_source fs<br />
     where p.position_id = ph.position_id<br />
       and l.location_id = ph.location_id<br />
       and fs.SOURCE_ID  = l.SOURCE_ID </p>
<p>       and<br />
(  ( <img src='http://itknowledgeexchange.techtarget.com/itanswers/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> haseIn_or_Shared = &#8216;P&#8217; and ph.phasein = &#8216;Y&#8217; )<br />
     or  ( <img src='http://itknowledgeexchange.techtarget.com/itanswers/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> haseIn_or_Shared = &#8216;S&#8217; and p.position_type = &#8216;S&#8217;   ) )</p>
<p>and fs.source_id = nvl(:P_FUNDING_SOURCE, fs.source_id)<br />
and ltrim(rtrim(upper(l.circuit))) = ltrim(rtrim(upper(nvl(:P_CIRCUIT, l.circuit))))<br />
and ltrim(rtrim(upper(l.department))) = ltrim(rtrim(upper(nvl(:P_DEPARTMENT, l.department)))) </p>
<p>   order by  1, 2, 3, 4, 5;</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/i-want-the-total-at-the-bottom-of-the-group/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Preparing a report on a SQL Server database</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/preparing-a-report-on-a-sql-server-database/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/preparing-a-report-on-a-sql-server-database/#comments</comments>
		<pubDate>Tue, 03 Mar 2009 19:52:56 +0000</pubDate>
		<dc:creator>SQL Server Ask the Experts</dc:creator>
				<category><![CDATA[SQL Server database]]></category>
		<category><![CDATA[SQL Server Report Builder]]></category>
		<category><![CDATA[SQL Server reporting]]></category>
		<category><![CDATA[SQL Server Reports]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I have a SQL Server database of customers that called our company, and now i want to prepare a report that indicates which ones are new to our database. How would I do this?]]></description>
				<content:encoded><![CDATA[<p>I have a SQL Server database of customers that called our company, and now i want to prepare a report that indicates which ones are new to our database. How would I do this?</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/preparing-a-report-on-a-sql-server-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Error message while running a report created in SQL Server Report Builder</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/error-message-while-running-a-report-created-in-sql-server-report-builder/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/error-message-while-running-a-report-created-in-sql-server-report-builder/#comments</comments>
		<pubDate>Tue, 02 Dec 2008 14:58:09 +0000</pubDate>
		<dc:creator>SQL Server Ask the Experts</dc:creator>
				<category><![CDATA[Report Model]]></category>
		<category><![CDATA[SQL Server errors]]></category>
		<category><![CDATA[SQL Server Report Builder]]></category>
		<category><![CDATA[SQL Server reporting]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I am trying to use Report Model in SQL Server Report Builder, but when I run the created report I am getting the following error: &#8220;Cannot create a connection to data source &#8216;dataSource1&#8242;. &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- An error has occurred during report processing.&#8221; What can I do to avoid this error?]]></description>
				<content:encoded><![CDATA[<p>I am trying to use Report Model in SQL Server Report Builder, but when I run the created report I am getting the following error:</p>
<p>&#8220;Cannot create a connection to data source &#8216;dataSource1&#8242;.<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
An error has occurred during report processing.&#8221;</p>
<p>What can I do to avoid this error?</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/error-message-while-running-a-report-created-in-sql-server-report-builder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 3/14 queries in 0.017 seconds using memcached
Object Caching 534/567 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-23 09:52:32 -->