Forum Replies Created

Viewing 15 posts - 886 through 900 (of 1,246 total)

  • RE: My SSIS import from Excel package works from my PC, does not from Server

    chris.laxdal (11/5/2014)


    Have you tried setting up the SQL Agent task to use 32-bit runtime? I have seen this many times where it fails to open the package if it...

    ----------------------------------------------------

  • RE: Primary Key datatype Bigint vs uniqueidentifier:

    Just a quick note here for anyone interested, surrogate keys are a data warehouse concept and not in the operational data system. Surrogate keys protect me (for instance) from the...

    ----------------------------------------------------

  • RE: performance issue causing application failed to load

    Is this still an ongoing issue. I wouldn't mind DDL statements with some sample data if so. Are the columns in your where clause properly indexed and statistics current? Could...

    ----------------------------------------------------

  • RE: Need help with a query that contains Aggregate

    Jack Corbett (8/18/2014)


    If you read the 1st link in my signature and post using those suggestions you'll get more and probably better answers because what you have posted...

    ----------------------------------------------------

  • RE: What account to use for Identity when creating a Credential and to use as the job owner?

    The thing to keep in mind is why proxy accounts exist. When you schedule a package, the agent account (by default) on the machine you deployed to runs your IS...

    ----------------------------------------------------

  • RE: Parse out the first 3 characters

    It is good to know the LEFT function is there in the 2012 version, thank you Lynn.

    ----------------------------------------------------

  • RE: Parse out the first 3 characters

    Vimal Lohani (8/17/2014)


    I didn't find any error with the code :

    DECLARE @i TABLE( mychar VARCHAR(50)

    ,deriv as SUBSTRING(mychar,1,3) --Use this

    ,newderiv as left(mychar,3));--Or use this

    INSERT @i VALUES ('Steve'), ('Stephan'), ('Stephanie')

    , ('Sterling'), ('Steppenwolf'),('Ab'),('Abc')

    SELECT...

    ----------------------------------------------------

  • RE: sql_variant

    The author of this article makes use of the sql variant. When capturing configuration baseline data one column is the configuration name and another the value. Of course the configurations...

    ----------------------------------------------------

  • RE: Show missing date

    The CTE has a default max recusrion of 100. I can easily create a on the fly set of 100 consecutive days from a start date with something like :...

    ----------------------------------------------------

  • RE: SSRS Date

    Most of the time I see systems having Sunday's as the first day of the week, as is the default for the Outlook calendar.

    Have a look with this :...

    ----------------------------------------------------

  • RE: Problem w/temporary tables in Stored Procedure accessed by SSRS

    I wonder if they were seeing the issue of a stored procedure returning one of many temp tables/record sets (created within the procedure), depending an an argument passed. If...

    ----------------------------------------------------

  • RE: My SSIS import from Excel package works from my PC, does not from Server

    You mention that only Sheet1 is where the problem is. Is this because once the package fails you are not able to get to the data flow task for the...

    ----------------------------------------------------

  • RE: Database developer or BI?

    I think there is good potential in BI. From what I've seen there is a want from employers to have a background or understanding of basic statistics. BI turns data...

    ----------------------------------------------------

  • RE: Subquery returned more than 1 value Error

    Take a look at the MERGE operator in Books Online. It will insert into the table when the record is not there and update the DESC or whatever other non-key...

    ----------------------------------------------------

  • RE: round to two digit after decimel

    select CAST(sum(saletotal) as money) /NumberofDays;

    Should give you the correct significant digits.

    ----------------------------------------------------

Viewing 15 posts - 886 through 900 (of 1,246 total)