Viewing 15 posts - 841 through 855 (of 7,429 total)
There are at more than a half dozen I have tried and I keep coming back to AdeptSQL myself.
ApexSQL Diff - http://www.apexsql.com
AdeptSQL Diff - http://www.adeptsql.com
SQLEffects Clarity -
July 25, 2006 at 12:03 pm
To expand you can do this to get all on a server.
sp_msforeachdb 'select ''?'' dbname, convert(sysname,DatabasePropertyEx(''?'',''Recovery'')) recovery'
July 25, 2006 at 11:50 am
Please post the DDL of the Temp tables in full and please explain how this code is used, is in a stored procedure?
July 25, 2006 at 11:38 am
The difficult part is not knowing your intended design and whether or not you have gone far enough into the thought process. Have you sat down and done a paper...
July 25, 2006 at 11:35 am
Need more info. Please post the DDL of the Temp tables in full and please explain how this code is used, is in a stored procedure?
Lastly is that the condition...
July 20, 2006 at 1:45 pm
C drive full up as well can get you and is commonly over looked.
July 17, 2006 at 2:41 pm
If the previous does not solve the issue try setting up profiler to watch the activity while you reproduce the issue and review what is happening.
July 17, 2006 at 2:39 pm
BOL states user which assumes groups cannot be used. sp_ChangeDBOwner changes the actual ownership between people. If you need the Group to have DBO type rights you assign them to...
July 17, 2006 at 2:36 pm
After you table name add
WITH (INDEX(0))
This will force a table scan or clustered index scna (if you have one) which is what you are trying to accomplish.
You might also try...
July 17, 2006 at 2:29 pm
That is the fun part.
With this
(Scenario 1)
JOIN ON (a.FieldID = b.FieldID AND b.Sold=1)
VS...
May 12, 2006 at 12:46 pm
What I believe happens in a non-static call such as this is that all 750,000 records are pulled across then filtered so you loose the advantage of all the indexes...
May 5, 2006 at 3:40 pm
You missed my other question:
How many rows are in remoteserver.database.dbo.table2 (the sql 7 server)?
May 5, 2006 at 3:32 pm
BTW do you have Distributed Transaction Coordinator runnin or not?
May 5, 2006 at 3:26 pm
Dumb question but how are you referencing the server for TCP/IP. Is it by the name or by a DNS entry or the IP?
Have you tried using the IP itself...
May 5, 2006 at 3:25 pm
How many rows are in remoteserver.database.dbo.table2 (the sql 7 server)?
May 5, 2006 at 3:22 pm
Viewing 15 posts - 841 through 855 (of 7,429 total)