1
vote
1answer
44 views

Pivoting columns based on a key

I have the following table: key_column INT, column_type_id INT, --has only 3 values, e.g. 1,2,3 value INT I want to transfer the datat from that table into my DW fact table which looks like this: ...
0
votes
3answers
312 views

SSRS 2008: Why does a declared query variable show in the “Define Query Parameters” window?

I'm having trouble creating a dataset in Reporting Services 2008. Here's the query I want to use (generic-ized for public consumption): Declare @PersonID as int set @PersonID = (select top 1 personID ...
-1
votes
2answers
551 views

Indicators in SSRS

I have a column in SSRS report. The value is "True" or "False" or "Yes" or "No" or "1" or "0" Instead of showing that in that column, I would like to use indicator. I placed indicator in that column ...
-2
votes
1answer
674 views

Error in FROM clause: near '{'. Unable to parse query text

I'm trying to execute the following query for a Dataset: SELECT S.CUSIP, S.SecName, ISNULL(RA.FinInstCode, '') AS RemarketingAgent, S.IssueDate, S.MaturityDate, F2.FinInstName AS Trustee, ...
1
vote
2answers
174 views

How do I use manual T-SQL transactions in BIDS with IIS?

I'm as green as they come when using BIDS and SSIS, just started today. I wanted to create a table and import some data into from an Access data file. I got that to work but I had to keep deleting the ...
4
votes
1answer
677 views

SSIS Writing 0x00 Hex Value to Flat File

I am using SSIS to write multiple packed fields (hex values) to a flat file for a mainframe system. I have found that writing 0x00 or NULL doesn't write NULL it writes 0x20 or a space. Is there a way ...
1
vote
1answer
170 views

SQL or SSIS Checking Stg Table vs History Table for Dupes

I am receiving transaction information from multiple different sources and it is all combined into a single staging table. The staging table that contains: TransactionNumber (Not Unique) ...
1
vote
1answer
353 views

Is it wise to disable a Task by using an expression evaluation?

I have an SSIS Package that is scheduled to export data on a daily basis. I have a few Tasks that I'd like to execute only on the first day of the month. It is important that these Tasks are ...