Viewing 15 posts - 76 through 90 (of 334 total)
I finally said the heck with it and wrote an SP:
CREATE PROCEDURE [DBO].[mystats]
(
@poolid int,
@empid varchar(50),
@pos int output,
@pts int output,
@ties int output,
@ahead int output
)
AS
BEGIN
SELECT @pts=TotalPoints FROM playerStandings...
March 9, 2006 at 7:22 am
This view gets joined to a table of people/points by the number of points. It tells me for each person not only how many points they have but whether or...
March 9, 2006 at 7:05 am
Unfortunately xp_cmdshell is restricted in our environment...
March 2, 2006 at 5:46 am
Still returns 4,979. Select count(*) in QA returns 5,000.
Aren't row counts in the System tables notoriously inaccurate? I thought I'd seen that several times in other posts.
March 1, 2006 at 7:41 am
Thanks for the contribution but
March 1, 2006 at 7:11 am
Hmm... Not sure how that would work. Here's the whole context:
I have a table of distribution lists. Each list has a name (descriptive) and a table/view name that is the...
February 28, 2006 at 12:17 pm
nb: I looked at http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=8&messageid=258288#bm258319
and that doesn't solve my problem as far as I can tell.
February 28, 2006 at 12:05 pm
I was entering the string as you did above with my SP:
Exec dbo.Instant_Status 'BF33FA65-D558-43F5-BE47-0F0D20AB0028'
but I was getting no return. I went back and found I'd copied the GUID from...
February 2, 2006 at 8:31 am
Thanks Sergiy,
I guess I could use your technique to pull the GUID of a row from a table and execute my SP. I was hoping someone would chime in on...
February 2, 2006 at 5:23 am
Update ActiveUsers
Set Email = (Select Mail From Directory Where Empid = EmployeeID)
January 31, 2006 at 7:55 am
That was dumb. Re-reading my own post, I'm in QA... Of course I can't use RETURN.
Sheesh!!! Virtual Monday.
December 27, 2005 at 8:23 am
If I read it right you're assuming that if the first 5 characters match then the brokers are duplicates? If so, have you tested that to see if it really...
December 21, 2005 at 9:39 am
Maybe in QA, but not within a Stored Procedure...
December 5, 2005 at 2:26 pm
Viewing 15 posts - 76 through 90 (of 334 total)