Viewing 15 posts - 53,521 through 53,535 (of 59,068 total)
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...
December 19, 2007 at 6:48 am
Ashwin M N (12/18/2007)
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...
December 19, 2007 at 6:46 am
Mike Levan (12/18/2007)
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...
December 19, 2007 at 6:32 am
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"...
December 18, 2007 at 4:44 pm
Unlike Oracle or other RDBMS's, you can do this in SQL Server...
UPDATE CEM_smcsAssignments
SET MGR = a.MGR
FROM #ADD a,
...
December 18, 2007 at 3:47 pm
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...
December 18, 2007 at 3:43 pm
Are any of the items in the FROM clause actually views instead of tables?
December 18, 2007 at 3:05 pm
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...
December 18, 2007 at 3:02 pm
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...
December 18, 2007 at 2:55 pm
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...
December 18, 2007 at 2:52 pm
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...
December 18, 2007 at 2:45 pm
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...
December 18, 2007 at 12:36 pm
What is the datatype of the JobDate column and what does the ChangeDate function return as a datatype?
December 18, 2007 at 11:20 am
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...
December 18, 2007 at 11:14 am
Viewing 15 posts - 53,521 through 53,535 (of 59,068 total)