Forum Replies Created

Viewing 15 posts - 3,001 through 3,015 (of 6,035 total)

  • RE: Date Conversion

    rahulsahay123 (1/8/2016)


    I am getting a data feed with date column of type integer.Format is mmddyyyy.

    Values are like : 01092015

    Now i want to convert this into yyyy-mm-dd ...

  • RE: 100 Hours

    ... I ran across a piece that referenced a slightly shorter rule, the 100 hour rule. The rule is fairly simple: "for most disciplines, it only takes one hundred hours...

  • RE: Improving string comparisons that use like

    This smells like healthcare claims data. If so, then "userpolicyid" is something like PayerID + SubscriberID + DependentID, and the format is not coded consistently between external sources. That's the...

  • RE: Improving string comparisons that use like

    ... userpolicyid has a code that could contain the policyid e.g AAabc1232015 ...

    Could contain? One thing you could do is add a non-persisted computed column, index that, and then use...

  • RE: SSIS query produces different results over the day.

    Phil Parkin (1/8/2016)


    Alvin Ramard (1/8/2016)


    Instead of making all kinds of assumptions, why not wait for the OP to answer what was already asked?

    Sl33py seems to have dozed off 😀

    That's OK;...

  • RE: Table Creation - Tool

    Alvin Ramard (1/8/2016)


    Jeff Moden (1/8/2016)


    I especially hate it when a Developer that doesn't know, creates tables using Visual Studio or has VS auto-magically create the tables from objects because almost...

  • RE: SSMS: First connection to DBMS takes over 15 minutes

    This type of behaviour would be situation normal for a Java app, but not for a Windows executable. Using SysInternals Process Explorer, see what SSMS.EXE is doing during the several...

  • RE: SSIS query produces different results over the day.

    Having the package property IsolationLevel set to 'ReadUncommitted' while selecting from a volatile table, or setting (NOLOCK) hint in the DataFlow source SELECT statement?

  • RE: Rulebreaking Developers

    Matt Miller (#4) (1/8/2016)


    Eric M Russell (1/7/2016)


    ... I saw was of a press conference where the upper management of VW seems to indicate that the software developers on the project...

  • RE: SSMS: First connection to DBMS takes over 15 minutes

    After successfully logging in, check the SQL Server Logs for any out of the ordinary events ocurring around the same time as your initial slow login. Also, consider using SQL...

  • RE: Where to start...

    Two common and simple patterns for inserting rows into TableA from TableB where the rows don't already exist in TableA.

    INSERT INTO TableA ( id, a, b, c )

    SELECT id, a,...

  • RE: want to run .exe file in remote server from my local machine

    We also use PSExec using either Execute Process task or a WScript. However, I would suggest avoiding any workflow that involves running remote processes, because it's a weak point of...

  • RE: Table Creation - Tool

    The best tool for creating tables from a logical model is an experiened database developer who knows what a clustered index and foreign key are and how to use them....

  • RE: simplifying a complicated delete statement

    When deleting or updating a set of rows based on IDs derived from other related tables, it can be helpful, for both performance and readability reasons, to first select the...

Viewing 15 posts - 3,001 through 3,015 (of 6,035 total)