Forum Replies Created

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

  • 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...

  • RE: Identify letter vs. number

    Mindy, the problem is that you have the data stored in a CHAR(32)... trailing blanks come into play there. Either change the column to a VARCHAR(32) or modify my...

  • RE: Dynamic Proc

    jeff ...there is no other go, i want ot use only dynamic sql

    Heh... you must not have looked because I gave you dynamic SQL. 😉

  • RE: concatenation problem

    Sorry... not seeing the pattern here between the inputs and the desired output... would you explain how you want the concatenation formed better, please? Also, see the following if...

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