Viewing 15 posts - 9,676 through 9,690 (of 26,489 total)
ScottPletcher (9/10/2012)
Lynn Pettis (9/7/2012)
September 10, 2012 at 2:45 pm
The query string for OPENQUERY is restricted to 8KB, for BOL:
'query'
Is the query string executed in the linked server. The maximum length of the string is 8 KB.
http://msdn.microsoft.com/en-us/library/ms188427(v=sql.100).aspx
September 10, 2012 at 11:30 am
Ajdba (9/10/2012)
I have a variable of @sql_str nvarchar(max) and it is giving me error saying '...it is too long and maximum length is 8000'; when I do select LEN(@sql_str),...
September 10, 2012 at 10:28 am
So, is it wrong to code these processes to do the clustrered index first if it needs to be rebuilt as well as any nonclustered indexes?
September 10, 2012 at 10:22 am
GilaMonster (9/10/2012)
Lynn Pettis (9/10/2012)
September 10, 2012 at 10:17 am
One more thing, if you need to rebuild a clustered index and a nonclustered index on the same table be sure to do the clustered index first. Otherwise the...
September 10, 2012 at 10:08 am
Phil Parkin (9/10/2012)
Lynn Pettis (9/7/2012)
Phil Parkin (9/7/2012)
In her solution, basedata is a CTE - effectively a subquery in this case - from which...
September 10, 2012 at 9:57 am
ScottPletcher (9/10/2012)
The UNPIVOT (one table scan) looks much better to me than fully scanning the table once for every grade column.
Probably, but I am still new at writing pivot/unpivot queries...
September 10, 2012 at 9:55 am
Sean Lange (9/10/2012)
September 10, 2012 at 9:47 am
kshatriya24 (9/10/2012)
Thank you for sharing the information. The indexes we rebuilt were created by oracle/peoplesoft. We use CRM module of Peoplesoft.
I helped support PeopleSoft HR and Finance systems for 5...
September 10, 2012 at 9:39 am
Fragmentatioin is not something that can be prevented, it has to be managed.
I would start by reading the following articles:
http://www.sqlservercentral.com/articles/Indexing/68439/
September 10, 2012 at 9:08 am
sstteevvee22 (9/10/2012)
Msg 4145, Level 15, State 1, Line 24
An expression of non-boolean type specified in a context where a condition is...
September 10, 2012 at 8:28 am
spin (9/10/2012)
i have a proc which i need to include/exclude specific the account codes based on the being free of charge accounts
so....
if @FOCYN = 1
set @foc1 = '40015'
set @foc2...
September 10, 2012 at 8:24 am
Viewing 15 posts - 9,676 through 9,690 (of 26,489 total)