Viewing 15 posts - 16 through 30 (of 346 total)
What data type is your step column? If it is stored as text that would mean 9 is greater than 10. If it is being stored as text, cast or...
January 22, 2015 at 2:41 pm
I think you need something like this:
Create procedure ProcedureName @AppCode int, @AgencyID int, @CompnyID int, @CustCode int=null
as
select @AgencyID = coalesce(@CustCode,@AgencyID)
select AppCode, AgencyID, CompnyID, CustCode, CustVal
from table1
where appcode = @appcode and...
November 5, 2014 at 3:56 pm
This article is quite thorough.
Bonus: It's from Phil Factor
https://www.simple-talk.com/sql/t-sql-programming/consuming-json-strings-in-sql-server/
November 5, 2014 at 3:50 pm
Yes, I'm a beginner, but we have several other Python users with varying skills in Python.
August 27, 2014 at 9:01 am
We use Python to do all kinds of things, but most of our Python is used to automate ARC GIS processing.
August 27, 2014 at 8:31 am
I thought that would work too, however I tested this and it did not work:
ALTER trigger PreventRename on all server for alter_database as
declare @command varchar(max)
SELECT @Command = EVENTDATA().value('(/EVENT_INSTANCE/TSQLCommand/CommandText)[1]','nvarchar(max)')
print @Command
if @Command...
August 15, 2014 at 3:31 pm
Here is an alternative solution.
July 18, 2014 at 2:47 pm
create proc dbo.proc1 @input int
as
select case @input
when 1 then 'yes'
else 'No'
end;
May 19, 2014 at 3:38 pm
That should also work, depending on permissions needed.
April 21, 2014 at 11:07 am
You will probably want to set up your app pool with a service account that has the necessary permissions to run your application.
April 21, 2014 at 6:57 am
Try this:
Click "Start button"
in the search box, enter "Turn windows features on or off"
in the features window, Click: "Internet Information Services"
Click: "World Wide Web Services"
Click: "Application Development Features"
Check (enable) the...
April 11, 2014 at 7:25 am
If you are just looking to get notified when one changes or is added, you could setup a job to run this and look at the modify_date and send an...
April 10, 2014 at 2:47 pm
You will need to take the SQL Server service off line and bring it back online after making the setting change.
March 20, 2014 at 1:09 pm
Viewing 15 posts - 16 through 30 (of 346 total)