Forum Replies Created

Viewing 12 posts - 1 through 12 (of 12 total)

  • RE: Update failing from CSV if data not in table

    Hi you can do something like this.
    DECLARE @CT INT
    SET @CT = (SELECT COUNT([pWholesalePrice]) FROM [dbo].[Products])

    IF ISNULL(@Ct,0) > 0
    BEGIN
        --update

  • RE: pass table param

    Ok thank you

  • RE: pass table param

    This is purely hypothetical to see if it's possible to pass a table to a function created by the statement 
    ;WITH
    Is it not possible?

  • RE: query format

    Jeff Moden - Wednesday, October 11, 2017 7:56 PM

    MinhL7 - Wednesday, October 11, 2017 6:48 PM

    October 11, 2017 at 8:14 pm

    #1963298

  • RE: query format

    They're grouped 

    CREATE TABLE [dbo].[Title]( [ID] [int] NULL,
    [Description] [varchar](50) NULL,
    [Dept] [varchar](50) NULL
    ) ON [PRIMARY]

    INSERT INTO [dbo].[Title]([ID],[Description])
    VALUES(1,'Architect','IT')

    INSERT INTO [dbo].[Title]([ID],[Description])

  • RE: query format

    Jeff Moden - Sunday, October 8, 2017 11:45 PM

    MinhL7 - Sunday, October 8, 2017 3:19 PM

    October 11, 2017 at 6:00 am

    #1963159

  • RE: query format

    This is just dummy data to show how I need the data displayed in 3 columns.

  • RE: select from flat file

    It's not a good file and I need to filter the insert. Can you select certain columns and add a where clause?

  • RE: select from flat file

    It's separated by tab, thank you.

  • RE: select from flat file

    The flat file looks like this.

    ...

    Field1Field2
  • RE: installation error

    What about Windows 10?

  • RE: installation error

    I followed this https://blogs.msdn.microsoft.com/cesardelatorre/2011/03/27/the-application-has-failed-to-start-because-its-side-by-side-configuration-is-incorrect-error-related-to-mmc-exe-programs-and-weird-cause-simple-solution/. This is what was in the C:\MySxSTrace.log :crazy:

    Ð Ð ...

Viewing 12 posts - 1 through 12 (of 12 total)