Viewing 15 posts - 18,061 through 18,075 (of 26,489 total)
jcrawf02 (12/9/2009)
December 9, 2009 at 11:54 am
Check BOL for the syntax of the EXECUTE statement. I think you'll find that you need the OUTPUT statement on the parameters that are output parameters when calling the...
December 9, 2009 at 11:52 am
Is the following order of records guarantteed, or could you get a type 1 with no following type 0, or could you get 2 consecutive type 1's or 0's?
100, 2009-11-01...
December 9, 2009 at 11:44 am
If Jeff suggested that you do this, I suggest you figure out how to write the query using a while loop. Give it a shot. If you have...
December 9, 2009 at 11:21 am
How the .... did this person get a job in IT?????
The force in this one is not only weak, I think it is nonexistant.
December 9, 2009 at 11:14 am
Krasavita (12/9/2009)
Microsoft SQL Server 2000 - 8.00.2040 (Intel X86) May 13 2005 18:33:17 Copyright (c) 1988-2003 Microsoft Corporation Standard Edition...
December 9, 2009 at 11:11 am
CirquedeSQLeil (12/9/2009)
To follow up on what Gail said, (and make it very obvious)...
But you will continue to get an error until you resolve the issue with d.id.
My guess, from the...
December 9, 2009 at 11:06 am
Bru Medishetty (12/9/2009)
Krasavita (12/9/2009)
How to know if I in 32 bit or 64 bit enviroment.
Right click on SQL Instance in SSMS, select properties, the initial properties windows lists the Server...
December 9, 2009 at 11:04 am
Ask your system admin.
You can also run this in Query Analyser: select @ @ version (no spaces after the @ signs). If you see x64 in the returned string...
December 9, 2009 at 11:02 am
Actually, you want a LEFT OUTER JOIN.
create table dbo.TblA (
Model char(1)
);
create table dbo.TblB (
Model char(1)
);
insert into dbo.TblA
select 'a' union all
select 'b' union...
December 9, 2009 at 10:57 am
doran_doran (12/9/2009)
The error on this line....Incorrect syntax near '+'.
@body = 'A record with id ' + convert(varchar(50), d.id) + ' has been updated.',
At this point in the trigger you no...
December 9, 2009 at 10:40 am
doran_doran (12/9/2009)
Actually, at this stage I am just trying to create the trigger so I will not be received access denied.
However, I already check the sp in new windows...
December 9, 2009 at 10:35 am
Anyone have a polite way of telling someone to learn how to debug their own code?
I'm trying to help, but any time I try to write something about doing their...
December 9, 2009 at 10:32 am
The second error message is probably caused by this part: EXEC msdb.dbo.sp_send_dbmail . You don't have access to the inserted table at the point you are trying to create...
December 9, 2009 at 10:27 am
Viewing 15 posts - 18,061 through 18,075 (of 26,489 total)