Forum Replies Created

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

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

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

  • RE: CPU Utilization more than 95% for more than 3 hours

    I had a brief experience with a server showing High CPU usage. With the basic sp_who2 I found the suspect process ID and plugged it into

    DBCC inputBuffer(pid)

    That clued...

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

  • RE: CDC activities on receiving machine?

    You'll have to tell me about how this is a push to the destination. Normally you query the change data capture tables to see what rows changed and get the...

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

  • RE: CDC polling mechanism

    I am not too knowledgeable on that level. I can say the capture job runs continuously but somehow knows when there is idle time in the system. Only then does...

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

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