Viewing 15 posts - 6,241 through 6,255 (of 18,926 total)
Maybe Gail has a better crystal ball that I do, but without seeing the columns, what type of data you keep in there and how the table is used it's...
May 11, 2011 at 7:46 am
david.holley (5/11/2011)
May 11, 2011 at 7:44 am
kr.nithin (5/11/2011)
There is a correction: I had mentioned 18 tables. It should be 18 Indexes. and the Indexes...
May 11, 2011 at 7:38 am
Please run this
DBCC CHECKDB('db-name') WITH TABLERESULTS, NO_INFOMSGS, ALL_ERRORMSGS
We can't provide a plan for the solution before we have all the errors.
May 11, 2011 at 7:37 am
Index definition including the datatypes please.
Is this table really heavy on insert / deletes?
May 11, 2011 at 7:34 am
IIRC this is why xml was invented...
You've said on another thread that you can't use nvarchar(max). Why?
Assuming this is true then you are basically screwed at building the code...
May 11, 2011 at 7:29 am
The real tuning is to NOT returned columns you don't need.
Select * or select 100 column names won't change much on sql server. If there's a difference it's...
May 11, 2011 at 7:26 am
Any reason why you're not using select *?
P.S. Yes I know this is not best practice.
May 11, 2011 at 7:21 am
Do they have more than 1000 pages of data?
What's the leading column of the index? If it's a guid then yes it's normal.
It's also possible if this is some...
May 11, 2011 at 7:12 am
Then use nvarchar(max). That works.
May 11, 2011 at 7:04 am
ilker.cikrikcili (5/11/2011)
Procedure expects parameter '@statement' of type 'ntext/nchar/nvarchar'.
I have the same problem, I need a 8000 long data...
May 11, 2011 at 6:54 am
Ken Davis (5/11/2011)
Yes, that message was from the job history. Another part of this mystery is...
May 11, 2011 at 6:52 am
You're not giving any usefull info to help you.
unclosed quotation mark means you have something like this in your code :
where whatever = 'ok'wrong'
it should be
where whatever = 'ok''wrong'
If...
May 11, 2011 at 6:44 am
Viewing 15 posts - 6,241 through 6,255 (of 18,926 total)