Viewing 15 posts - 406 through 420 (of 430 total)
The argument that has worked at my company is that spreadsheet use means we store the same information in many places, which means we do not use standard names and...
August 17, 2009 at 9:10 am
We switched from Crystal to SSRS mainly because of cost. We just had the freebie five license web server for Crystal which meant when 5 people were viewing reports, nobody...
August 4, 2009 at 8:52 am
Have you checked that the value of @BSTVal is being set correctly in both cases?
I assume prcBSTOn is a proc, the code for which is not listed.
June 17, 2009 at 8:25 am
duda (3/26/2009)
I have a problem in proclarity front end application. It does not calculate the subtotals correctly in some of the columns. See example below:
...
April 24, 2009 at 11:29 am
I have no idea why it works one way and not the other, but why not solve the truncation?
Maybe irrelevant, but SSIS defaults char fields to a length of 50....
November 26, 2008 at 8:43 am
This doesn't help, but this is the reason I believe that excel is the devil.
Excel 2007 does a much better job of handling text values that resemble numbers, but I...
September 25, 2008 at 7:55 am
One of my cleanup tasks was not working because I had the file suffix as .bak including the dot.
September 3, 2008 at 8:04 am
If I posed this question "should I sweep my driveway with a toothbrush or a hairbrush?' would it be more helpful to tell me to use a broom or the...
August 20, 2008 at 7:20 am
Will this work?
CASE WHEN TotalTests >2 THEN '3PLUS' ELSE '2MINUS' END AS Tests2
Or do you need two additional columns:
CASE WHEN TotalTests <= 2 THEN 1 ELSE 0 END AS...
July 28, 2008 at 9:52 am
Are they both running on the same box? If not then you may have to set up kerberos. It sounds simple, but never works on our network.
July 3, 2008 at 9:24 am
What machine are you running the package from? I think you have to be on the server to use bulk insert in SSIS. That's how I got it to work,...
June 17, 2008 at 7:03 am
I found this article useful:
I had some columns with incompatible data types, so I ended up using SSIS to query oracle and convert some columns, then import into SQL Server.
This...
May 12, 2008 at 8:16 am
Whats the function to convert roman numerals to int? 😉
May 7, 2008 at 10:49 am
Are you doing this in Reporting Services?
If so, you need to compile the proc in sql, then select that procedure as the source of your dataset, then map your report...
April 7, 2008 at 10:31 am
Something like this might work.
CREATE PROC donkey (@MonthNum int, @Year int)
AS
DECLARE @query_head nvarchar(1000), @query_foot nvarchar(100), @sql_string nvarchar(1500)
SET @query_head = 'SELECT * FROM [dbo].[ProductRank~QD~1~'
SET @query_foot = RTRIM(CONVERT(char(2),@MonthNum)) + '~' +...
April 7, 2008 at 7:59 am
Viewing 15 posts - 406 through 420 (of 430 total)