Viewing 15 posts - 3,436 through 3,450 (of 11,678 total)
Strange. You should be able to use the service account impersonation setting. It's what we use here at the current project.
Make sure the SSAS service account has read permissions on...
March 26, 2014 at 4:30 am
The OLE DB connection manager doesn't just dissapear when you deploy the package to the server.
If you open up the source component, do you see the connection managers name?
To check...
March 26, 2014 at 4:26 am
paul.knibbs (3/26/2014)
March 26, 2014 at 4:16 am
paul.knibbs (3/26/2014)
Well, it's not a totally unreasonable position, so long as you actually know what you're talking about...
Are any of the Hekaton/columnstore features part of the ANSI standard?
It would seem...
March 26, 2014 at 4:03 am
There seem to be 2 issues:
* an ole db connection manager is not found. It surprises me that this error is not present in BIDS.
* the file "L:\Information Technology\Business Intelligence\BI...
March 26, 2014 at 3:55 am
In simple: DQS is for cleaning data, MDS is for storing the master data.
They can be used together, but they can also operate alone just fine.
Master Data is typically what...
March 26, 2014 at 3:51 am
You can use CONVERT for that.
DECLARE @TestDatetime DATETIME = GETDATE();
DECLARE @TestDate DATE;
DECLARE @TestTime TIME;
SELECT @TestDate = CONVERT(DATE,@TestDatetime);
SELECT @TestTime = CONVERT(TIME,@TestDatetime);
PRINT @TestDate;
PRINT @TestTime;
If you want the values inserted in seperate columns,...
March 26, 2014 at 3:18 am
Phil Parkin (3/26/2014)
March 26, 2014 at 1:37 am
dan-572483 (3/25/2014)
March 26, 2014 at 1:15 am
balu.arunkumar (3/24/2014)
i want output like below:select name from sys.columns where object_ID=3 /* Query something like this */
Output :
ABCD
That's something completely different from your first question.
If you named the column ABCD1234,...
March 24, 2014 at 8:09 am
Paul Williams (3/24/2014)
March 24, 2014 at 6:44 am
SELECT student_id, cnt = COUNT(subject_id)
FROM #student_details
GROUP BY student_id
HAVING COUNT(subject_id) > 1;
Since this is most likely a homework assignment of some sorts, make sure you at least understand the solution given.
March 24, 2014 at 6:21 am
mahesh.yerragonda (3/24/2014)
Finally got it.I changed connection manager from sql authentication to windows authentication and gave the user admin roles.Did use any configurations now.Thanks all for the help.Thanks,
Mahesh
Good that it works,...
March 24, 2014 at 5:32 am
Viewing 15 posts - 3,436 through 3,450 (of 11,678 total)