Viewing 15 posts - 16 through 30 (of 44 total)
I am using SQL 2008
my email use to work but my pc crashed and had to redo it and know I can not get email to work but everything else...
March 26, 2013 at 7:58 am
maybe I figured it out I was using port 25 instead of 587.
January 3, 2013 at 9:04 pm
yes but when I go into the sql server log it get the mail could not be sent to the recipients because of the mail server failure. etc
January 3, 2013 at 8:37 pm
I want to set up a web server so I can use Dreamweaver to create aspx.net pages to connect to my Sql 2008 Server on an xp machine
December 26, 2012 at 12:32 pm
ok. where I work not all people know how to write tsql code and if they mess up the tsql they do not know how to fix it is why...
November 13, 2012 at 9:15 am
I have a proc called IT.InsertWorkRequestProc I right click on it and tell it to execute and it brings up a execute proc window for me to enter the information...
November 13, 2012 at 8:32 am
sorry for not explaining very well. I have a proc when I right click on it it brings up a execute proc I enter the information in it and hit...
November 13, 2012 at 8:26 am
Is there away after it has ran get it to reopen so you can insert the information using the proc without having to right click on it and telling it...
November 13, 2012 at 8:14 am
I knew it was something i was overlooking.
Thanks
October 10, 2012 at 9:37 am
It lets me insert into the tables but if I enter birthday of 1955-10-17 it should give me an error saying this is not a juvenile and not insert into...
October 5, 2012 at 12:39 pm
still getting error
Msg 50000, Level 11, State 1, Procedure AddJuvenileMember, Line 103
Subquery returned more than 1 value. This is not permitted when the subquery follows =, !=, <, <= ,...
October 5, 2012 at 11:37 am
(1 row(s) affected)
here is the Proc
use master
go
set ansi_nulls on
go
set quoted_identifier on
go
-------------------------------------------
------Author: <Eddie Hall>
------CreatedDate <10/04/2012>
------Description: <Create Juvenile, insert into juvenile, First Name>
-------------------------------------------
alter Proc Dbo.AddJuvenileMember
@lastname varchar(15) = null,
@firstName varchar(15) = null,
@middleInitial char(1)...
October 5, 2012 at 11:19 am
i get this error
Msg 50000, Level 11, State 1, Procedure AddJuvenileMember, Line 98
Subquery returned more than 1 value. This is not permitted when the subquery follows =, !=, <, <=...
October 5, 2012 at 11:04 am
Viewing 15 posts - 16 through 30 (of 44 total)