bids

How to use SSIS Visual Studio 2008 to build Dynamic Datapull from multiple SQL servers for multiple tables using foreach loop

☆樱花仙子☆ 提交于 2019-12-14 03:24:57
问题 What I want to do is build a dynamic data pull from different SQL source servers (Server1,Server2,Server3) etc. To pull down to dynamic locations on my SQL server (Dev,Prod) into databases (database1,database2,etc) The tables will be dropped and recreated each time the package is run so that I am sure I match the source servers if they change anything on source (field names, datatypes, lengths, etc) I will still get the data to extract. I want to pull this down using a single dataflow in a

How do you create a variable of scope EnvVariable?

爷,独闯天下 提交于 2019-12-13 06:44:12
问题 How do you create a variable of scope EnvVariable as shown in this screenshot of this StackOverflow Answer? 回答1: The scope usually represents the Package name or a Control Flow task name. Here in this case, EnvVariable represents the package name. Refer screenshot # 4 . To create a variable, follow the below mentioned steps. Right-click on the package and select Variables . Refer screenshot # 1 . On the Variables pane, click the first icon to create a variable. Refer screenshot # 2 . By

Updating dimension tables using SQL Server (BIDs or Data Tools)

99封情书 提交于 2019-12-13 05:12:49
问题 I'm quite confused as to how I'm supposed to be adding dimension members to my data warehouse. Let's say that TOWN_NAME is a dimension table that links town_Id to a town_name. So, now, I have 1000 customer names, and they are from 9 towns. Suddenly, in my next ETL process, a customer ends up being added whose town is not amongst that 9 towns i have in my dimension. So I need to add a member to my dimension table. Which step/process in BIDS or DATA TOOLS (BIDS 2012) would have I to use? How

SSRS BIDS clustered stacked bar chart

北城余情 提交于 2019-12-13 04:08:57
问题 Is there a way to create a chart in BIDS that combines the properties of these charts a horizontal stacked bar chart like this: http://www.google.com/imgres?start=230&hl=en&sa=X&biw=1920&bih=1061&addh=36&tbm=isch&prmd=imvns&tbnid=0EL4x7-sHuCIyM:&imgrefurl=http://www.phplot.com/phplotdocs/ex-horizstackedbar.html&docid=iqqzU8FDMbnIAM&imgurl=http://www.phplot.com/phplotdocs/examples/horizstackedbar.png&w=800&h=500&ei=U21kUJ_3JaTq0gH2yoDACw&zoom=1&iact=hc&vpx=1172&vpy=771&dur=3864&hovh=177&hovw

SSIS Script Editor throws an exception

我的未来我决定 提交于 2019-12-12 13:23:56
问题 I have SQL Server 2012, SSIS, SSDT and Visual Studio 2010. I can create a new SSIS package and add a Script Task, but if I attempt to open the Script Editor for that Script Task I get the following error: TITLE: Microsoft Visual Studio ------------------------------ Cannot show Visual Studio 2010 Tools for Applications editor. ------------------------------ ADDITIONAL INFORMATION: Could not load file or assembly 'Microsoft.VisualStudio.Tools.Applications.Core, Version=10.0.0.0, Culture

Move UniVerse data into SQL Server 2014 using u2 Toolkit

白昼怎懂夜的黑 提交于 2019-12-12 04:14:43
问题 I am attempting to migrate a UniVerse database into SQL Server 2014. I have downloaded and installed the U2 toolkit for .net from Rocket software. The U2 provider is displayed in the dropdown list and I have entered all the required info in the Connection Manager window. Once I have entered the info, I test the connection and it connects successfully. But when I try to access the dropdown to view the available tables within the UniVerse database, the tables fail to load. Also when I try to

Can I create a BIDS project in VS2008 with SQL 2005?

依然范特西╮ 提交于 2019-12-11 18:34:52
问题 From what I can find online about using VS2008 to create a integration/reporting services project it appears I need to have SQL 2008. Does anyone know of a work-around that would allow me to use VS2008 with SQL 2005? 回答1: Installing SQL Server 2005 client/workstation tools should install BIDS 2005. 回答2: Your license for SQL2008 should allow you to downgrade and use BIDS2005. I've had VS2005 and VS2008 both installed on the same machine concurrently. 来源: https://stackoverflow.com/questions

Self-Join in SSAS

别来无恙 提交于 2019-12-11 11:33:16
问题 I have a table like this: PersonId Job City ParentId --------- ---- ----- -------- 101 A C1 105 102 B C2 101 103 A C1 102 Then I need to getting the association rules between Person's job and parent's city . I've used self-referencing and define case/nested tables but at the result of dependency graph there is no difference between person's job or city and parent's job or city! What is the best solution for this problem in SSAS project? 回答1: SSAS Hierarchies should address your problem.

Error debugging SSIS (excel source, data conversion, OLE DB destination)

北城以北 提交于 2019-12-11 08:48:42
问题 I am having issues creating a good data flow from Excel Source to SQL DB in BIDS 2010. I'm using 32-bit runtime, i have windows authentication on the SQL Server. I'm trying to send the data to a table that has no relationships or constraints at all. My excel file is .xls and I've tried doing this to SS2012 and SS2008R2 databases, getting the same errors back. Here's my Package Validation Error: Error at Data Flow Component [SSIS.Pipeline]: "component "Source for Excel Connection Manager" (1)"

Multiple SELECT CASE statements in Query For Shoretel Reports

。_饼干妹妹 提交于 2019-12-11 06:46:08
问题 I am trying to do a query that allow for multiple columns in a view. Any assistance would be helpful. SELECT queuecall1.StartTime, queuecall1.QueueName CASE WHEN ExitReason = 7 THEN 1 ELSE 0 END AS CallsAbandoned WHEN ExitReason = 1 THEN 1 ELSE 0 END AS CallsAgent WHEN calltype = 1 THEN 1 ELSE 0 END) AS CallsInternal WHEN calltype = 2 THEN 1 ELSE 0 END) AS CallsExternal FROM (queuecall queuecall1 INNER JOIN connect connect1 ON queuecall1.ConnectTableID=connect1.ID) INNER JOIN call call1 ON