Forum Replies Created

Viewing 15 posts - 53,521 through 53,535 (of 59,068 total)

  • RE: SELECT INTO

    Heh... thanks, Donald... I just knew there had to be something else... maybe even some DELETE triggers somewhere in there that no longer fire due to the Truncate...

    Anyway, thanks for...

  • RE: Different date format in different tables.

    Ashwin M N (12/18/2007)


    I want to make clear about what my application developer wants.

    create table test1 (A1 int identity(1,1),A2 datetime)

    insert into test1(A2) select 19-12-2007

    create table test2 (A1 int identity(1,1),A2 datetime)

    insert...

  • RE: Dynamic Proc

    Mike Levan (12/18/2007)


    when i tried doing this

    select startDate from tblemp where startDate between '1/1/2006' and '12/31/2006'

    i dont get that date range, why?

    startdate is varchar(100), I Cant change that in the...

  • RE: Concatenation function

    Sure... with what?

  • RE: update only one field in a table with concatenation

    David,

    Now, be gentle with me... just now starting to get my feet wet on 2k5... 😉

    ...since the following two queries return the identical result set, why did you include "STUFF"...

  • RE: The simple ones really stump me...

    Unlike Oracle or other RDBMS's, you can do this in SQL Server...

    UPDATE CEM_smcsAssignments

    SET MGR = a.MGR

    FROM #ADD a,

    ...

  • RE: Report rendering time too long

    Why might using a parameter slow down a basic report?

    Dunno about most of your problems (although sub-queries could be a huge problem if they are actually correlated subqueries), but some...

  • RE: how to tune this query

    Are any of the items in the FROM clause actually views instead of tables?

  • RE: Concatenation function

    I want to create a function for which I pass ID, placeholder, type; it should give me a concatenated names.

    Why? Basically, this is a form of "Death-by-SQL"... where are...

  • RE: Log growth problem

    You don't really want to have it reclaim space automatically... causes too much fragmentation over time...

    You need to find out what's making it grow to 42Gig... that's step 1...

  • RE: SELECT INTO

    10 hours to 15 minutes? Heh... I like SELECT/INTO a lot but I've not seen that type of performance gain just by switching like that before... Are you sure...

  • RE: Problem Extracting Data from Flat File

    I load flat files that have many different row types. Fortunately, they're identified by a key in the file. I just load the whole shootin' match into a...

  • RE: Log growth problem

    Was it sitting at 42GB a week ago with only .5% used as it was this morning? If so, I think you could probably safely shrink the log file...

  • RE: Dynamic Proc

    What is the datatype of the JobDate column and what does the ChangeDate function return as a datatype?

  • RE: concatenation problem

    Jeff - it's a sequential file setup. look at the multiple segments (1 relates to the next "2" by previous.col3=current.col2).

    Heh... I'm getting old... I was looking at trying to...

Viewing 15 posts - 53,521 through 53,535 (of 59,068 total)