bids

IBM Informix-SQL syntax error, basic query from Microsoft BIDS to Cisco UCCX database

落花浮王杯 提交于 2019-12-11 06:26:22
问题 I'm running the below query against an IBM Informix database and getting an ERROR 42000: A syntax error has occurred . The FROM and WHERE clauses run fine in other queries, so I'm looking at the SELECT and GROUP BY portions. Any ideas what's wrong with the syntax? SELECT COUNT(DISTINCT "informix".agentconnectiondetail.sessionid) AS calls_abandoned, DAY("informix".agentconnectiondetail.startdatetime) AS Expr2 FROM "informix".agentconnectiondetail, "informix".contactqueuedetail, "informix"

C# Script Using StreamWriter Creates Extra Character?

青春壹個敷衍的年華 提交于 2019-12-11 04:38:41
问题 I am using a C# Script Tasks in SSIS to output ASCII characters. I am doing this because I am creating a file with Packed fields, a packed field takes two digits into each byte, using a notation called Binary Coded Decimal. So, I have found when outputting a NUL (0x00) [Dec 0] with a Œ (0x8C) [Dec 140] it adds an extra character  (0xC2) between them. I can't figure out why this is happening. Does anyone have any ideas? Please see my code below: string fileName; System.IO.StreamWriter writer;

SSIS Job scheduler failing, but running fine in BIDS and in MSDB integration Services

隐身守侯 提交于 2019-12-11 03:17:13
问题 I have created an SSIS package , that exports that from Oracle 10g server into SQL SERVER 2008. The package runs fine , when I run it through Microsoft BIDS, It run fine , when I create a package of it and runs it in Integration Services. It gets failed only when I schedule it through Jobs scheduler (SQL Server Agent) Date,Source,Severity,Step ID,Server,Job Name,Step Name,Notifications,Message,Duration,Sql Severity,Sql Message ID,Operator Emailed,Operator Net sent,Operator Paged,Retries

Visual Studio 2008 Report Server Project Design View not working

寵の児 提交于 2019-12-11 02:35:56
问题 When I create a new Reporting Services report or try to open an existing report (that has been working) in Visual Studio 2008. I cannot view the design. I get no error message and it only shows html code in the "Design View". I've tried reinstalling VS2008 and BIDS, but hasn't worked. This was all working when I last used it 2 weeks ago. -nate 回答1: I had the same problem, and Kyle's was the exact answer. In my case, the Error List window (In Visual Studio 2008 IDE: View > Error List)

How can I prevent BIDS from automatically checking out SSIS packages?

丶灬走出姿态 提交于 2019-12-10 23:58:03
问题 I have Visual Studio 2005 (BIDS) set to "Check out automatically" when a file is edited which works well for most file types. When I access a Data Flow within an SSIS package though, a check out is triggered without me making any changes. When I compare the files, there does not appear to have been any changes made in the background either. This behaviour is annoying because I lose track of which files I actually made changes to and because I am potentially taking locks on files that I am not

No shared Datasets in solution explorer of business intelligence development studio

风格不统一 提交于 2019-12-10 23:56:09
问题 I have business intelligence development studio v 9.0 installed and am trying to create some sample reports. in my solution explorer there is no shared Datasets folder so that i can add or cread .rsd files anyone knows how to add the shared datasets to the solution explorer of the project? 回答1: only sql server 2008 R2 has shared dataset the first version of 2008 doesn't have this feature. 来源: https://stackoverflow.com/questions/10205601/no-shared-datasets-in-solution-explorer-of-business

How can I merge rows (of a particular column) having the same value in SQL Server Reports RDL?

笑着哭i 提交于 2019-12-10 11:34:07
问题 I'm new to working with SQL Server 2005 Reporting Servives using RDLs in BIDS. I need to modify an existing report so that I can merge cells in adjacent rows which would have the same value for that particular column. Ex: consider this is the table returned from the stored procedure used by the reports RDL. _________________________________________________ Id SubCategory Field1 Field2 Total _________________________________________________ 1 a Bob US 17 1 b John UK 17 2 a Mary AUS 12 3 d Ram

Using ANY free SQL Server version to simply create a local SSIS/dtsx file run on local machine

左心房为你撑大大i 提交于 2019-12-08 14:09:15
问题 Yes I KNOW there are a lot of questions about this on styack overflow, and I'm sorry but all I found was reading through dozens and dozens where every one seemed to disagree, or things were terribly version specific and more importantly - many of them were out of date as the rules seem to change over time. All I want to know is, can I download and install (actually on my client's computer), any free or almost-free version of SQL Server (I really don't care if it's 2005, 2008, 2012 etc) to

SSAS - Data Cube Hierarchy not visible in Excel

♀尐吖头ヾ 提交于 2019-12-07 20:30:29
问题 Initial Request: Create hierarchies over customer names and product descriptions. Problem: I created several similar hierarchies and the product description hierarchy is not visible in Excel Supporting details The computed columns for each hierarchy look like this: Column Name: Product Description Prefix1 Expression: CASE WHEN [ProductDescription] = 'N/A' THEN 'N/A' ELSE LEFT([ProductDescription], 1) END Column Name: Product Description Prefix5 Expression: CASE WHEN [ProductDescription] = 'N

SSAS cube with multiple DB

让人想犯罪 __ 提交于 2019-12-07 00:37:41
问题 I have 3 databases with the same structure, but different data, since they are from different clients. Now, I have an existing SSAS project. Its Data Source Views, Cubes and Dimensions can only use or access one DB. What I want is to be able to use multiple databases with the same structure, and create a cube using them. Each client must also be able to use the cube, but they can only see their own data. Are these possible? Can you please provide insights and some useful references? 回答1: Easy