Viewing 15 posts - 21,931 through 21,945 (of 22,194 total)
SP2 seems to introduce almost as many problems as it fixes. That said, if I were doing an install today and didn't face one of the specific issues that SP2...
April 9, 2007 at 11:50 am
Since this posted in SQL Server 2005, why not use nvarchar(max)? No problems there, stores the same data.
April 9, 2007 at 11:45 am
What about using sp_msforeachdb along the lines of
'SELECT [TABLE_NAME]
FROM ?.INFORMATION_SCHEMA.TABLES'
Substitute where you need to. This works across all the database and eliminates the need for a cursor.
April 9, 2007 at 9:34 am
I've mainly grown my best practices over time. We record them locally as we discover new ones that we didn't know we need. MS has some help in this area....
April 5, 2007 at 1:43 pm
It must be a system proc. There's not only nothing BOL. There's nothing at MSDN. There's nothing at TechNet. There's precious little on a google search. What are you mucking...
April 5, 2007 at 11:18 am
Sure, it's a common table expression. It's new in 2005. They function similar to derived tables, but can be referenced multiple times in a give procedure and, most importantly for...
April 5, 2007 at 11:15 am
And the recursive section of BOL has an example doing almost exactly what is being requested here. You ought to be able to take the example & make it...
April 5, 2007 at 11:00 am
We took a script from SQL Server Central that checked fragmentation and then decided whether or not to reindex or defragment (great script, used it for years, I'm not sure...
April 5, 2007 at 10:54 am
Oops. Did a bit more testing & found you need to add this at the end:
OPTION(MAXRECURSION 0);
Or you could...
April 5, 2007 at 10:46 am
No promises on performance but:
DECLARE
@BeginDt DATETIME;
DECLARE @EndDt DATETIME;
SET
@BeginDt =
April 5, 2007 at 10:40 am
I had to meet a similar need. We figured out that there were only a few constants. So, instead of trying to design a storage engine to get at data...
April 5, 2007 at 10:27 am
100% agreement with everything you said and thank you for saying it. Situational awareness has to extend past one's self. If something looks bad, it probably is. Do something about...
April 5, 2007 at 5:38 am
I'd move this kind of processing into SSIS. You've really stepped outside what TSQL is meant to do with all the file I/O. You'll probably get the same or better...
April 4, 2007 at 7:04 am
Thank you. Yes, that is on the list as a possibility. I'm just trying to explore the space and I'm not finding much in the way of documented approaches.
April 3, 2007 at 11:04 am
True, and it's something I'm looking into, but it makes me even more nervous. As the article you link to states, if the app isn't processing this information as fast...
April 3, 2007 at 9:21 am
Viewing 15 posts - 21,931 through 21,945 (of 22,194 total)