Forum Replies Created

Viewing 15 posts - 8,161 through 8,175 (of 26,490 total)

  • RE: Query help for Data pulling

    Ray M (4/3/2013)


    Lynn Pettis (4/3/2013)


    Does this help you figure out how to query the data into a format you can use? Personally, I'd load the data as is from...

  • RE: Do Not Call list

    erikd (4/3/2013)


    Lynn Pettis (4/3/2013)


    erikd (4/3/2013)


    Lynn Pettis (4/3/2013)


    From your post I can't tell if you are using '\ n' (no space between the \ and n) as your row terminator.

    There is...

  • RE: Query help for Data pulling

    Does this help you figure out how to query the data into a format you can use? Personally, I'd load the data as is from Excel into a staging...

  • RE: Do Not Call list

    erikd (4/3/2013)


    Lynn Pettis (4/3/2013)


    From your post I can't tell if you are using '\ n' (no space between the \ and n) as your row terminator.

    There is no space.

    So, does...

  • RE: Query help for Data pulling

    DBA12345 (4/3/2013)


    I need to pull the info from excel to the Database table through SSIS. I need logic for below scenario.

    Excel Look like below:

    Server ...

  • RE: Do Not Call list

    erikd (4/3/2013)


    Hi,

    So, even though my company has nothing to do with telemarketing, we've been asked to bump phone numbers for one project up against the national DNC list. It's a...

  • RE: GROUP BY Subcase_Number within several columns

    5280_Lifestyle (4/3/2013)


    Lynn,

    I tried using that query and I canceled the query after waiting for about 8 minutes. It didn't like that version.

    It was worth a shot, but what I talked...

  • RE: GROUP BY Subcase_Number within several columns

    5280_Lifestyle (4/3/2013)


    As for the ANSI joins, when I tried switching to ANSI some of the rows were left out. With the old outer joins, the output was 243 rows. With...

  • RE: Temp Table sort order

    There is no guarantee of order if you do not specify an ORDER BY in your select query.

  • RE: T-SQL help

    Biggest suggestion I have, don't use date as a column name. It is also a datatype starting with SQL Server 2008.

  • RE: T-SQL help

    This:

    create table #temp

    (CalendarDate datetime,

    IsWeekDay int,

    SchoolDay int)

    insert into #temp values('2011-08-06 00:00:00.000',0,0)

    insert into #temp values('2011-08-07 00:00:00.000',0,0)

    insert into #temp values('2011-08-08 00:00:00.000',0,0)

    insert into #temp values('2011-08-09 00:00:00.000',0,0)

    insert into #temp values('2011-08-10 00:00:00.000',0,0)

    insert...

  • RE: i need the max length value of every column in every table in a database

    erikd (4/3/2013)


    Sean Lange (4/3/2013)


    Using your dynamic code as an example this will produce the same results but as a single query instead of 1 query for each column.

    declare @thing...

  • RE: Output Parameter in Stored PRocedure

    kapil_kk (4/3/2013)


    Hi all, I have created a sp in which I want to extract last identity value after doing insertion....

    But its giving me error that @new_identity parameter is not...

  • RE: *MAY* need to switch DBs from Full Recovery to Simple, due to backup space issues...

    GilaMonster (4/3/2013)


    jasona.work (4/3/2013)


    So my worst-case solution to reduce the size of data in the TLogs is to do the following:

    1. After-hours, switch all DBs from Full Recovery to Simple,...

  • RE: Transaction Log Backup Always Generates Job Failed Message

    I have seen people actually configure job steps to quit the job reporting failure for the On success action.

    You may want to check this.

Viewing 15 posts - 8,161 through 8,175 (of 26,490 total)