Viewing 14 posts - 1 through 14 (of 14 total)
Gosta Munktell (11/11/2008)
Hopefully you are aware of the problems with format when you import data from Excel
with DTS or SSIS. I would do the pattern matching in VBA and save...
November 13, 2008 at 1:46 pm
how are you determining which rows to delete?
I would create a delete process using a 'while loop' or something similar, so that you end up deleting batches of...
November 5, 2008 at 11:31 am
Lynn Pettis (11/5/2008)
What is the view? Please post the DDL for the view as well.
create view COMMITTEE
as
select COMM_ID,
COMM_NAME,
...
November 5, 2008 at 9:21 am
You only need to wrap the value in single quotes:
declare @ab varchar (100)
set @ab='483503'
select * from tm_temp_empmastall where employeeid=@ab
November 5, 2008 at 7:08 am
yes, statistics were updated, I went ahead and did it again. It didn't make a difference.
I created a copy of the remote data locally on the 2005...
November 5, 2008 at 6:45 am
Lynn Pettis (11/4/2008)
with ParentCommittee (
CommID,
CommName
) as (
select
comm_id,
comm_name
from
Committee
)
SELECT
...
November 4, 2008 at 1:54 pm
Neither of the last two suggestions helped. Any other suggestions?
Also, I appreciate the help, this issue is driving me nuts.
November 4, 2008 at 9:46 am
Garadin (11/3/2008)
I know it's the order by that's causing it, but I don't understand why it's causing the issue.
So if you remove the Order By, it functions the same...
November 3, 2008 at 3:15 pm
Lowell (11/3/2008)
statistics on one server might be...
November 3, 2008 at 8:54 am
Steve Jones - Editor (11/3/2008)
I'd double check indexes as well. I've seen people assuming they're the same when they aren't.
No indexes to compare, the source tables are the same set...
November 3, 2008 at 8:53 am
ALZDBA (11/3/2008)
- are the linked server settings equal ?
- do the databases use the same ansi settings ?
- ...
November 3, 2008 at 8:51 am
Trust me, I would very much like to avoid them also. The decision was made at a higher level, where it was determined that a single enterprise backup solution...
September 17, 2008 at 9:29 am
One additional piece of information - our backups are handled via CommVault, and the redgate log reader doesn't seem to be able to read these backup files, which is what...
September 17, 2008 at 6:54 am
tried your suggestions, I'm still getting the same error : function 'reg' was not found in the script.
April 14, 2005 at 11:21 am
Viewing 14 posts - 1 through 14 (of 14 total)