Viewing 15 posts - 316 through 330 (of 2,486 total)
Yes that is the way to get field data into the headers and footers.
Another method that I've seen work, keeping in mind that this was a simple single table report,...
May 15, 2007 at 9:15 pm
That would be because it's using Nolock as an alias to the table on the remote server.
So you would be able to have your query look like ,
select Nolock.*...
May 15, 2007 at 9:12 pm
Another thing to check is if SQL is sending unicode data that is not being interpreted properly in DB2.
If you're seeing a square box as every second character, then this...
May 15, 2007 at 7:36 pm
Whatever process is trying to save the Excel file is not able to read a necessary environment variable. Maybe the environment variable is setup on a per-user basis and not system...
May 15, 2007 at 7:20 pm
Setup the sp_blocker_pss80 procedure as described in the KB article,
http://support.microsoft.com/default.aspx?scid=kb;EN-US;271509
May 15, 2007 at 7:09 pm
The ability to view text data in a database backup is nothing new. SQL 2005 now incorporates data encryption that can secure the data. For SQL 2000, most of the...
May 15, 2007 at 7:05 pm
You could sort of hack that together by doing a union query with the first part holding the column names.
select 1 as Seq, 'yourColumn_1' as yourColumn_1
union
select 2 as Seq,...
May 14, 2007 at 7:49 pm
Ok, how about processing the data and storing the results in a table that the report uses?
I've done this with a couple of reports where data had to come from 4-5...
May 14, 2007 at 5:35 pm
I didn't know there was a Reporting Services 2003 In Reporting Services 2000, I think the config and Site Settings are pretty much the...
May 14, 2007 at 1:24 am
The BCP won't know what the @company variable is. You'll need to build the sql statement prior to giving it to BCP.
eg: set @sql = 'SELECT * FROM CUSTOMERS WHERE...
May 14, 2007 at 1:21 am
Not too sure what you're trying to achieve. Are you wanting to store the query text in a field, or the results from that query?
You can use the replace function...
May 13, 2007 at 10:46 pm
Yes, either bcp, or osql using the -o option, will output your data to a file. BCP is definitely the more configurable of the two.
May 13, 2007 at 10:24 pm
Not sure if it fits with your scenario, but what about if that table only ever had one row of data
May 13, 2007 at 10:22 pm
Firstly, I'd be asking what person in their right mind would have a report that takes 45 mins to run. That would indicate that there is probably too much going...
May 13, 2007 at 10:19 pm
Would be extremley useful to know what the error is
May 13, 2007 at 9:50 pm
Viewing 15 posts - 316 through 330 (of 2,486 total)