Advertisement
Advertisement
| 05.21.2008 at 11:38AM PDT, ID: 23422013 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: |
Below is both the SQL Stored Procedure and VB.NET Code:
--- SQL SP Code ---
SET ANSI_NULLS ON
SET QUOTED_IDENTIFIER ON
GO
ALTER PROCEDURE [dbo].[ADScan_CheckIfWkstnIsDisabled]
@Workstation_Name varchar(MAX),
@Status varchar(11) OUTPUT
AS
BEGIN
-- DECLARE @Status varchar(11)
-- Set @Status = 'Disabled'
SELECT U.Status, N.Workstation_Name
From Uptime U INNER JOIN Network N ON U.Mac=N.Mac
WHERE U.Status = @Status And N.Workstation_Name = @Workstation_Name
END
--- VB.NET CODE ---
'Check first to see if the workstation is already disabled. If it is, exit While loop.
Dim cmdGetStatus As New SqlClient.SqlCommand("ADScan_CheckIfWkstnIsDisabled", sqlCon)
cmdGetStatus.CommandType = CommandType.StoredProcedure
'sqlCom.CommandText = "ADScan_CheckIfWkstnIsDisabled"
Dim parmStatus As SqlClient.SqlParameter = cmdGetStatus.CreateParameter
Dim parmWkstn As SqlClient.SqlParameter = cmdGetStatus.CreateParameter
With parmWkstn
.ParameterName = "@Workstation_Name"
.SqlDbType = SqlDbType.VarChar
.Direction = ParameterDirection.Input
.Value = host
End With
With parmStatus
.ParameterName = "@Status"
.SqlDbType = SqlDbType.VarChar
.Direction = ParameterDirection.Output
End With
cmdGetStatus.Parameters.Add(parmWkstn)
cmdGetStatus.Parameters.Add(parmStatus)
cmdGetStatus.ExecuteNonQuery()
Return (parmStatus)
|