Viewing 15 posts - 1,231 through 1,245 (of 2,268 total)
A more efficent way to do this would be to create a lookup table with the oldnames and the new names in them;
CREATE TABLE [dbo].[NameLookup](
OldFullName VARCHAR (200),
NewFullName VARCHAR...
October 28, 2009 at 5:38 am
When you run the query in SSMS click on the small icon that says 'Include Actual Execution Plan' this shows the plan that SQL is...
October 27, 2009 at 10:11 am
Can you post the execution plan?
October 27, 2009 at 4:36 am
Can you also post the execution plan and table/index structure for the User_master table?
From an inital look it seems you could benefit from having an index on tx_type and...
October 27, 2009 at 3:37 am
You will need the correct indexes to speed up the query.
Can you post the table and index structure as well as your query and execution plan?
October 26, 2009 at 11:02 am
I like to use T-SQL with ROW_COUNT()
do you have a unique key that identifies the row?
Can you provide some more details about the table and data?
October 26, 2009 at 8:55 am
This seems like something that would be better handled in the front-end application, but anyway here is my solution (with create table code borrowed from above)
CREATE TABLE #WO(WO int, RD...
October 23, 2009 at 8:53 am
I assume that you are using the wizard to set this up?
Have tried using the Fully Qualified Domain Name for the servers?
October 22, 2009 at 7:58 am
GilaMonster (10/16/2009)
Index types. Never yet found someone who could tell me two types and the differences between them
Seriously? I find this a bit worrying, was this...
October 20, 2009 at 7:09 am
I would start by having a look in your Job history to see if there are any errors.
October 20, 2009 at 1:53 am
My suggestion would be to do a lot of testing before you try this in production, if you do not have another server you can always install a...
October 15, 2009 at 8:15 am
you should do the update in smaller batches and if possible during the quiet time on your database to minimise the affect on other users
October 15, 2009 at 7:56 am
You can only have one Physical Log file, if you are getting warnings about your Log file running out of space then either backup the log file ,...
October 14, 2009 at 11:37 am
That sounds like a fairly common scenario..
The problem with using an OLE update statement is that it has to run for each row that requires updating, so if you have...
October 14, 2009 at 11:07 am
Viewing 15 posts - 1,231 through 1,245 (of 2,268 total)