Viewing 5 posts - 1 through 5 (of 5 total)
From an IO view, limit LOBs whenever possible, the number of varchar(max) declarations are going to kill your IO. Another item is to consider using Temp tables vs table...
March 16, 2011 at 8:05 am
If the data / cleanup involved LOBs then to free the extents that are allocated to the table structure you need to run DBCC cleantable, then dbcc shrinkfile(N'db, 0)
March 16, 2011 at 7:57 am
Sad state of affairs - MS stole them . . .
refer to http://msdn2.microsoft.com/en-us/library/ms187367.aspx
Their reasoning - "For backwards compatibility, sp_xml_preparedocument collapses the CR (char(13)) and LF (char(10)) characters in attributes...
March 28, 2007 at 1:59 pm
http://support.microsoft.com/kb/915846
Lots to read - But I think the actual work will be performed by your network admin.
March 23, 2007 at 8:42 am
In order to use UNC mapping you must have SQL Server configured to run as a user with network access.
March 23, 2007 at 8:01 am
Viewing 5 posts - 1 through 5 (of 5 total)