Viewing 15 posts - 946 through 960 (of 1,183 total)
SELECT
dbo.[Web-Registration-Golf].Delegation AS Facility
,ISNULL(COUNT(dbo.[Web-Registration-Golf].StateID), 0) AS Lvl2NonPlayCount
FROM
dbo.[Web-Registration-Golf]
LEFT JOIN dbo.certifs
-- INNER JOIN dbo.certifs
ON...
______________________________________________________________________
Personal Motto: Why push the envelope when you can just open it?
If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.
Jason L. SelburgJune 25, 2007 at 11:18 am
http://www.sqlservercentral.com/columnists/jselburg/2824.asp
______________________________________________________________________
Personal Motto: Why push the envelope when you can just open it?
If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.
Jason L. SelburgJune 25, 2007 at 9:37 am
This is a way to have multiple versions of one procedure. For example if you create the three procedures below:
CREATE PROCEDURE dbo.test;1
AS
SELECT 1
______________________________________________________________________
Personal Motto: Why push the envelope when you can just open it?
If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.
Jason L. SelburgJune 18, 2007 at 9:16 am
I'm not 100% on this, but I don't think the SSMS will install if 2005 SSMS is already on the machine. I believe, you need to uninstall 2005 SSMS and...
______________________________________________________________________
Personal Motto: Why push the envelope when you can just open it?
If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.
Jason L. SelburgJune 15, 2007 at 10:51 am
Ravi, in the release notes it states that you may have to manually removed the registry entry. Check the release notes/known issues for details. ...
[EDIT] From the release...
______________________________________________________________________
Personal Motto: Why push the envelope when you can just open it?
If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.
Jason L. SelburgJune 9, 2007 at 9:12 am
Lynn, unfortunately your solution seems to take quite a while to run when there are 100,000 + rows.
mrpolecat, your solution runs...
______________________________________________________________________
Personal Motto: Why push the envelope when you can just open it?
If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.
Jason L. SelburgJune 8, 2007 at 8:43 pm
mrpolecat wins a piece of PIE for that one.....![]()
______________________________________________________________________
Personal Motto: Why push the envelope when you can just open it?
If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.
Jason L. SelburgJune 8, 2007 at 7:00 pm
OK, this is the 2005 forum, that's why I thought you had it.
As far as the file or string question....I don't know, but I'm someone else will answer that one...
______________________________________________________________________
Personal Motto: Why push the envelope when you can just open it?
If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.
Jason L. SelburgJune 7, 2007 at 12:07 pm
Wouldn't VARCHAR(MAX) do the trick?
______________________________________________________________________
Personal Motto: Why push the envelope when you can just open it?
If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.
Jason L. SelburgJune 7, 2007 at 11:51 am
I can't help you there, I've only just started .NET ...
______________________________________________________________________
Personal Motto: Why push the envelope when you can just open it?
If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.
Jason L. SelburgJune 7, 2007 at 11:46 am
My first thought would be to pull the RDL file into memory and manipulate it then save and call the report. Since they're nothing more than XML files, I'm sure...
______________________________________________________________________
Personal Motto: Why push the envelope when you can just open it?
If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.
Jason L. SelburgJune 7, 2007 at 10:51 am
Sorry, Anders is correct. You can use dynamic sql, but I try to avoid it... ![]()
______________________________________________________________________
Personal Motto: Why push the envelope when you can just open it?
If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.
Jason L. SelburgJune 7, 2007 at 10:39 am
If ALL of your label_value's are known then yes, you can. If not, then it can not be done with PIVOT. That's the one downfall with PIVOT that I've come...
______________________________________________________________________
Personal Motto: Why push the envelope when you can just open it?
If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.
Jason L. SelburgJune 6, 2007 at 6:57 pm
Can you post the DDL for your table and some sample data along with required results? Your question is fairly straight forward, but without sample data it's hard to exactly...
______________________________________________________________________
Personal Motto: Why push the envelope when you can just open it?
If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.
Jason L. SelburgJune 6, 2007 at 4:59 pm
Use two tables instead of Text boxes. Using two identical datasources with a filter on one for >0 and the other with <0.
______________________________________________________________________
Personal Motto: Why push the envelope when you can just open it?
If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.
Jason L. SelburgMay 31, 2007 at 4:11 am
Viewing 15 posts - 946 through 960 (of 1,183 total)