Viewing 15 posts - 6,106 through 6,120 (of 7,168 total)
Grant Fritchey (6/14/2011)
June 14, 2011 at 1:53 pm
I asked the developer to make the following changes so far:
> Rewrite UDFs used in SELECT column list that were using CURSORs to generate a comma-delimited list to use the...
June 14, 2011 at 11:35 am
PS For NVARCHAR fields it's best to prefix your string literals with the capital N:
INSERT INTO [dbo].[test_insert_number] ([text]) VALUES (N'a0123b')-- works as expected
June 14, 2011 at 10:51 am
alexms_2001 (6/14/2011)
IF EXISTS (SELECT...
June 14, 2011 at 10:38 am
New info:
The StatementSetOptions in the XML are apparently wrong per this bug report:
The bug report is for one of the 2008 CTPs but the bug is there in my version...
June 14, 2011 at 10:19 am
Another option is to use a a Cross Tab Query:
Cross Tabs and Pivots, Part 1 – Converting Rows to Columns[/url]
June 14, 2011 at 9:18 am
My initial thought was to recommend looking into the Search Server built into SharePoint. I have implemented it. It's a great way to expose an organizations disparate data down to...
June 14, 2011 at 9:11 am
A third-party FTP tool component be best for this sort of thing. Here is a good one for .NET. The free version may do most of what you need. If...
June 14, 2011 at 8:43 am
imani_technology (6/13/2011)
June 13, 2011 at 8:46 pm
A dynamic PIVOT will work fine but to take it to the next level please consider using a Dynamic Cross Tab Query for this job. These two comprehensive articles on...
June 13, 2011 at 8:15 pm
Grant Fritchey (6/13/2011)
I will note that statement 7 & 8 (two of the highest, one in ON & one in OFF) both show ANSI_WARNINGS...
June 13, 2011 at 5:37 pm
Maybe something along these lines will work:
WITH cte(StudentId, StudentName, TeamId)
AS (
...
June 13, 2011 at 4:43 pm
Thanks Carsten, I appreciate the post. Good luck!
- Orlando
June 13, 2011 at 4:03 pm
Craig Farrell (6/13/2011)
I don't think we'd be too worried about the execution plan here (unless they're significantly different with it off/on) except for rowcounts.
The proc produces one resultset and the...
June 13, 2011 at 4:02 pm
I am officially stumped.
Have you been able to recreate the issue in any environment?
If you can recreate it in a non-prod environment I would recommend getting Microsoft Support involved.
I am...
June 13, 2011 at 2:10 pm
Viewing 15 posts - 6,106 through 6,120 (of 7,168 total)