Viewing 15 posts - 241 through 255 (of 352 total)
Ray - thx for the feedback. Actually I used your exact solution - and it works fine in Mgmt Studio -- returning the table Name(s). Problem is - in Reporting...
September 18, 2007 at 7:01 am
John - thx a million.. That worked fine!
September 17, 2007 at 11:41 am
Thx for the feedback. FYI, to render the contents of the DROP down list in Reporting Services, I use an underlying dataset with this SQL:
SELECT [NAME] FROM...
September 17, 2007 at 8:01 am
Markus - thx for the SQL.. this worked fine in 2005. I modified the SQL to run against 2000 system tables and it's failing trying to get to sysdatabase_permissions (no such...
August 23, 2007 at 6:12 am
This script will cycle thru each 2005 DB and "auto-fix" each database User's SID to match their SQL Server level SQL Login.
DECLARE @sql nVarchar (100), @DB VarChar (50), @SQL1 nVarchar...
July 12, 2007 at 9:10 am
Unfortunately, no. If I come across 1, I'll reply.
June 15, 2007 at 6:49 am
I haven't tried it yet.. just wanted to inquire.
June 14, 2007 at 10:41 am
I successfully used REVLOGIN to generate the LOGINS script (from the source) and apllied to the target. Our issue resides with the fact that each SQL Login on our new,...
June 11, 2007 at 2:32 pm
Ed - much appreciated.. you can eMail the script at "webmaster @ skippackridge.com" (I seperated my eMail address here to avoid spam!! Please parse back together)
thx in advance
June 11, 2007 at 2:09 pm
Lynn - anything is appreciated. thx
June 7, 2007 at 5:24 am
Oblio - your solution worked PERFECTLY !! I can't thank you enough.
- Bill (DBASkippack)
May 23, 2007 at 8:09 am
DDL
---
CLSTLastName VARCHAR(40)
CLSTFirstName VARCHAR(40)
Value VARCHAR(100) --< don't blame me: I didn't design !!!
Perf_YTD DECIMAL(18,4)
BB_Return_YTD DECIMAL(18,4)
CLSTLastName CLSTFirstName Value Perf_YTD BB_Return_YTD
------------ ------------- ----- -------- -------------
Jones Adam 55 1.234 ...
May 22, 2007 at 2:21 pm
Unfortunately, I am still receiving the same error msg:
Msg 130, Level 15, State 1, Line 3
Cannot perform an aggregate function on an expression containing an aggregate...
May 22, 2007 at 1:58 pm
Thx Oblio - that worked great. Would you happen to know how to resolve this issue? I'm receiving an error in Management Studio because I'm performing a COUNT(*)...
May 22, 2007 at 1:40 pm
Gonna try this:
UPDATE RGPerfExtract SET Perf_YTD_Percentile =
dbo.UDF_LinearInterpolation(Value, Perf_YTDLT, Perf_YTDGE,
dbo.UDF_FloatingPointDivision(countLT-1,countMinus1),
dbo.UDF_FloatingPointDivision(countLT,countMinus1)) * 100 --as percentrank
FROM (
SELECT SUM(CASE WHEN Perf_YTD < Value THEN 1 ELSE 0...
May 18, 2007 at 9:34 am
Viewing 15 posts - 241 through 255 (of 352 total)