Forum Replies Created

Viewing 15 posts - 3,166 through 3,180 (of 8,754 total)

  • RE: Processing Flat file with no delimiters

    This will pivot the data sets to columns

    😎

    IF OBJECT_ID(N'dbo.DataTEST') IS NOT NULL DROP TABLE dbo.DataTEST;

    CREATE TABLE [dbo].[DataTEST](

    [ID] [int] IDENTITY(1,1) NOT NULL,

    Data [varchar](255) NULL

    ) ON [PRIMARY]

    INSERT INTO dbo.[DataTEST]

    ...

  • RE: Processing Flat file with no delimiters

    Here is a quick suggestion for filtering the data rows from the set

    😎

    IF OBJECT_ID(N'dbo.DataTEST') IS NOT NULL DROP TABLE dbo.DataTEST;

    CREATE TABLE [dbo].[DataTEST](

    [ID] [int] IDENTITY(1,1) NOT NULL,

    Data [varchar](255) NULL

    ) ON [PRIMARY]

    INSERT...

  • RE: Backup Restoring - Insufficient free space

    Minnu (9/21/2016)


    Hi Team,

    Restoring SQL Server database from one server to another.

    Actual Database size is: 14.3 GB

    But while restoring getting below error.

    The database required 127533776896 additional free bytes, while only 47082643456...

  • RE: Change SMO Connection string Dynamically

    Sri8143 (9/19/2016)


    I have created a SSIS pacakge with Transfer SQL Server objects task which copies the selected data from one server to other. For this task it used the SMOServer...

  • RE: Are the posted questions getting worse?

    Sean Lange (9/19/2016)


    Eirikur Eiriksson (9/19/2016)


    I'm normally very tolerant when it comes to noobs but this one only leaves me three choises

    😎

    1) deaf

    2) daft

    3) dumb

    I think that is only two choices...

  • RE: Are the posted questions getting worse?

    Sean Lange (9/19/2016)


    Eirikur Eiriksson (9/19/2016)


    I'm normally very tolerant when it comes to noobs but this one only leaves me three choises

    😎

    1) deaf

    2) daft

    3) dumb

    I think that is only two choices...

  • RE: Are the posted questions getting worse?

    I'm normally very tolerant when it comes to noobs but this one only leaves me three choises

    😎

    1) deaf

    2) daft

    3) dumb

  • RE: Select statements included within a function cannot return data to a client: SQL server 2014

    dimpythewimpy (9/19/2016)


    I tried to convert the above function to inline table valued function, but was unable to do the same. Can some one provide an example of inline function using...

  • RE: Are the posted questions getting worse?

    Jeff Moden (9/19/2016)


    Eirikur Eiriksson (9/19/2016)


    Hi all,

    I'm writing few pieces on XML operation's performance in SQL Server, both generating the XML, parsing it and operations on it and I'm wondering if...

  • RE: Date Time Issue

    SQLPain (9/19/2016)


    Got a Column FundingDate DATETIME ( has date as well as timestamp). I am using the following in where clause.

    CONVERT(varchar(10), L.FundingDate, 101) <=CONVERT(VARCHAR(10),GETDATE()-90,101)

    --doesn't work, misses dates such 2007-11-14...

  • RE: Are the posted questions getting worse?

    Brandie Tarvin (9/19/2016)


    Eirikur Eiriksson (9/19/2016)


    Hi all,

    I'm writing few pieces on XML operation's performance in SQL Server, both generating the XML, parsing it and operations on it and I'm wondering if...

  • RE: Are the posted questions getting worse?

    jasona.work (9/19/2016)


    Brandie Tarvin (9/19/2016)


    jasona.work (9/19/2016)


    I may be just a duck, but I'm an EEVVIILL little duck!

    :hehe:

    It's DUCK HUNTING SEASON!

    EDIT: Added URL

    WABBIT SEASON!

    I've been in those meetings.....:-D

    😎

  • RE: Are the posted questions getting worse?

    Hi all,

    I'm writing few pieces on XML operation's performance in SQL Server, both generating the XML, parsing it and operations on it and I'm wondering if anyone has any particularly...

  • RE: Getting rid of cursors

    Post the DDL (create table) script, sample data as an insert statement and the expected results.

    😎

  • RE: Are the posted questions getting worse?

    David Burrows (9/19/2016)


    Ed Wagner (9/19/2016)


    ChrisM@Work (9/19/2016)


    Eirikur Eiriksson (9/18/2016)


    Now where is that crystal ball again?

    😎

    You're going to need a pair of those. The OP (or should that be "perp"?) has been...

Viewing 15 posts - 3,166 through 3,180 (of 8,754 total)