Viewing 15 posts - 12,946 through 12,960 (of 14,953 total)
Can you create an Archive database (or table), move the data there, delete it from the main database, and then the reports that might need the old data can use...
July 9, 2008 at 9:58 am
I fixed the second insert statement (needs a null or ID for the third column in the first select), ran the code, and got results that seem to make sense...
July 9, 2008 at 9:39 am
Ron Kunce (7/7/2008)
July 9, 2008 at 9:27 am
The ANSI_Padding option would seem to allow trailing spaces to be handled the way you want them, but I just tested and it doesn't do it. It considers the...
July 9, 2008 at 9:24 am
You can do this with a simple set of left outer joins, I would think. Otherwise, it's Union All statements.
To be more specific, I would need to know the...
July 9, 2008 at 9:05 am
If you can't replace the field with nvarchar(max), instead of ntext, then you'll probably need to use the TextPointer and WriteText methods. Look up those keywords in Books Online,...
July 9, 2008 at 8:35 am
What columns would those be in other than the ones you don't want?
July 9, 2008 at 8:31 am
I've been in environments where security was severe, where security was lax, and where security was misapplied.
In the severe security environment, everyone from the bottom up paid attention to it....
July 9, 2008 at 8:23 am
Just for the sake of curiosity about performance on this whole thing, can I ask you to try out this:
;WITH
TopBene (BenefitType, BenefitID) as -- Selects top ID by type
(select...
July 9, 2008 at 7:39 am
Brian Tax (7/8/2008)
July 8, 2008 at 2:01 pm
I've had a similar problem, but it solves itself if I click on the instance to open its object tree. I did pretty much the same thing as you,...
July 8, 2008 at 12:55 pm
The specific columns plan has an index scan of PersonalData, while the * plan has a RID for that table based on an index seek.
I'd see about doing a covering...
July 8, 2008 at 12:53 pm
Viewing 15 posts - 12,946 through 12,960 (of 14,953 total)