Viewing 15 posts - 1 through 15 (of 27 total)
Thank You!!!
March 29, 2024 at 6:10 pm
ARGH I saw what i did i had duplicated the import into the [localgroupmembershiprostercsv__$] table so then when i ran my query it would insert and then find the...
February 22, 2023 at 9:00 pm
This is what is currently in my web.config
<add name="DefaultConnection" connectionString="data source=ServerName;Initial Catalog=DatabaseName;user id=myUser;password=myPassword;" providerName="System.Data.SqlClient" />
This is what I want to use
<add name="DefaultConnection" connectionString="data source=ServerName;Initial Catalog=DatabaseName;Trusted_Connection=True;" providerName="System.Data.SqlClient" />
I went to the...
September 16, 2022 at 4:00 pm
Once again Thank You ratbak I changed the procedure to use a return value and that eliminated all of the other selects being shown
September 12, 2022 at 2:31 pm
There is a return value in the individual functions being called
September 12, 2022 at 2:19 pm
Jeff, this is the stored procedure
ALTER PROCEDURE [dbo].[GetTheStanine]
@ApplicationID nvarchar(128),
@FamilyID int,
@Dimension int
AS
SET NOCOUNT ON
SELECT
CASE @Dimension
WHEN 1 THEN dbo.GetMentalAcuityStanin(Acuity,DateViewed,GETDATE())
WHEN 2 THEN dbo.GetBusinessTermsStanine(BusMem,DateViewed,GETDATE())
WHEN 3 THEN dbo.GetMemoryRecallStanine(BusMem,DateViewed,GETDATE())...
September 9, 2022 at 8:49 pm
hmmm I thought that it was working properly. However, when it returns the results instead of a single list, I am getting all of the individual stanines and then the...
September 9, 2022 at 8:37 pm
That procedure just calls some individual functions used to get each Stanine.
If you are looking for a formula for determining the bellcurve, we pay for studies to be done which...
September 9, 2022 at 8:20 pm
Excellent !!! Thank you very much!!
September 9, 2022 at 8:00 pm
Thank you ratbak
Standard Nine (stanine) values are the 9 values in a bell curve as shown in this image
The procedure GetTheStanine returns an integer value or to...
September 9, 2022 at 7:48 pm
Thank you. I don't know why I did not try that before posting. Evidently I was making it out to be a lot more complicated.
November 26, 2019 at 8:11 pm
Thank you Luis! I must not be wording my Google Queries properly because after I did a few searches I could not find anything on that that provided a lick...
October 9, 2019 at 7:07 pm
Do I need to make any changes when it is saved via SPROC?
Here is the Current SPROC
ALTER PROCEDURE [dbo].[AddButtons]
@LanguageID int,
@ButtonText nvarchar(200),
@ButtonID int
AS
SET NOCOUNT ON
IF EXISTS (SELECT ButtonText...
October 9, 2019 at 5:22 pm
Thank you. I saw that it changed it to varchar and edited my original post to be an image of my query
October 9, 2019 at 5:10 pm
Viewing 15 posts - 1 through 15 (of 27 total)