Forum Replies Created

Viewing 15 posts - 3,436 through 3,450 (of 11,678 total)

  • RE: SSAS Cube on one server and SQL Server DB on another - Connection Issues

    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...

  • RE: SQL Server Agent - SSIS Package Fail as the connection cannot be seen by the Agent

    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...

  • RE: Are the posted questions getting worse?

    paul.knibbs (3/26/2014)


    Seems I should clarify: I said it wasn't a totally unreasonable position, not that it was a position I agreed with. Wanting cross-compatibility between different database platforms is something...

  • RE: Are the posted questions getting worse?

    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...

  • RE: SQL Server Agent - SSIS Package Fail as the connection cannot be seen by the Agent

    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...

  • RE: Master Data Mgmt

    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...

  • RE: How to split the date time field into two?

    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,...

  • RE: Type Mismatch on Excel Input

    Phil Parkin (3/26/2014)


    1) As Aaron has already pointed out, Excel doesn't do data-typing. Regardless of how Excel displays data, it is either text or numeric. Dates (I think) are stored...

  • RE: The Unusable User

    Great question, thanks.

  • RE: What will be Identity value

    Nice question, thanks.

  • RE: Type Mismatch on Excel Input

    dan-572483 (3/25/2014)


    The Excel file contains data going back several years and I'm only looking for data entered in the past few weeks. (Honestly it is a personal...

  • RE: Displaying Column Name

    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,...

  • RE: Adding dimension (degenerate?)

    Paul Williams (3/24/2014)


    From a modelling perspective from what you have said, I would say your best bet is to create a Junk Dimension or Junk Dimensions depending upon the data...

  • RE: neer to select values which is in common

    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.

  • RE: Running SSIS package with other domain account

    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,...

Viewing 15 posts - 3,436 through 3,450 (of 11,678 total)