Viewing 15 posts - 376 through 390 (of 508 total)
Paul,
Thanks for the full explanation. It makes complete sense now.
Jeff,
Thanks for your time and full test. You do a fine job of myth busting. I've used your...
June 21, 2009 at 10:28 am
Paul,
I've kind of forgotten what the advantage to SCHEMABINGING is for a scalar UDF. I think I read it somewhere, but I can't find it in my SQL saved...
June 20, 2009 at 1:57 pm
Most of the time I've done this was for stored procedures that returned an OUTPUT type parameter, which can mostly be replaced by scalar functions. I'm afraid there is...
June 20, 2009 at 1:37 pm
I've had problems with Access front end to SQL Server back end like the one you describe.
Access is a funny beast when dealing with SQL Server when the forms are...
May 21, 2009 at 12:11 pm
Lutz,
I must not have been looking closely at the screen when I ran the test from your previous post. You're right!!!
That was just bloody brilliant. Thanks!! I...
May 12, 2009 at 1:33 pm
Lutz and Alex,
I really appreciate the time you guys put in on this problem. Unfortunately neither solution worked for this client. In the sample data for the table...
May 11, 2009 at 6:17 pm
Thanks guys. The CTE with Row Number was exactly how I did solve it. I just though there might be a way to use PIVOT to solve the...
May 10, 2009 at 3:57 pm
The only way I've found to handle this sort of thing requires several passes at the data. You want the most complete data possible for each duplicate:
-- Assuming that...
May 10, 2009 at 11:19 am
Thanks for your response. This isn't quite what I needed, however. I wanted to get 1 row per customer, with up to 5 sets of ordered pairs. ...
May 10, 2009 at 10:51 am
There is an easier way to do it. Using the COUNT(ColumnName) function counts only those rows that aren't null.
Here's an example:
create table #Orders (
OrderNum int,
...
April 30, 2009 at 4:13 pm
Drushen,
I never did get a solution for GMail. What we ended up doing was set up a Linux box running Zimbra to use as the SMTP server. The...
April 30, 2009 at 2:37 pm
The 1000 part is just an impossibly long number of characters to make up for the fact that we don't know exactly how long the string is. You start...
April 28, 2009 at 5:40 pm
You can also populate the drop-downs using a UNION query if you don't want to add a default to the actual code table.
SELECT
0 AS ID
, '*** None Selected...
April 28, 2009 at 3:44 pm
Viewing 15 posts - 376 through 390 (of 508 total)