Viewing 15 posts - 3,121 through 3,135 (of 3,606 total)
Return values are integers.
Alter your stored procedure and read the recordset returned from the stored procedure.
CREATE PROCEDURE test @log_id as int
AS
SET NOCOUNT ON
select solution from dbo.tbl_mis_log where log_id=@log_id)
GO
July 13, 2004 at 3:00 am
I've found srv.h in the examples file and it looks considerably different to the one in the visual studio directories.
Temporarily I have replaced the vs version with the ODS version...
July 12, 2004 at 12:29 pm
Marvellous isn't it. Bet it happened in a busy period as well!
I've had it happen to me and the only thing I could do was rebuild the server, reinstall SQL...
July 12, 2004 at 10:25 am
Unfortunately this is one of the problems with user defined datatypes.
You can update them, but they don't affect existing definitions within tables. They act as a template at the time...
July 12, 2004 at 5:31 am
SELECT TOP 25 * FROM Products WHERE ProductID NOT IN (SELECT TOP 25 ProductID FROM Products ORDER BY ProductID) ORDER BY ProductID
Presumably this was for the Northwind database?
SET FMTONLY on
GO
USE...
July 12, 2004 at 5:26 am
Interesting point this. An unscrupulous supplier could come up with a dodgy QOD on purpose!
July 12, 2004 at 1:58 am
Found it!
USE master
EXEC sp_configure 'max text repl size','<<size up to Gb expressed in byte>>'
RECONFIGURE WITH OVERRIDE
The default value is 65K
July 12, 2004 at 1:45 am
Have we beaten the flame record set by Steve's Ronald Reagan post yet?
July 9, 2004 at 10:05 am
As the author of the question has already posted, what they were trying to get at was that the USE statement doesn't work when the SET FMTONLY ON command has...
July 9, 2004 at 5:57 am
If you are a creationist then the chicken. If you are a Darwinian then the egg.
I'll play devils advocate and say that the trick questions are more relevant because it...
July 9, 2004 at 2:27 am
I don't think replication is the way to go on this.
If you are doing stats analysis then this, plus your comment about copying files, suggests that your dataset is...
July 9, 2004 at 2:22 am
I'm afraid it doesn't help. These are precisely the steps I am taking in any case.
sp_attach_db reports that model has been successfully attached, but it is lying!
July 9, 2004 at 1:31 am
I'm not sure if you gain anything with small VARCHAR fields because the nature of a VARCHAR is that it needs to store its start and end point.
A VARCHAR(3) could...
July 8, 2004 at 5:15 am
The minimum system requirements suggests that you can but I am not sure about the qualification they put about running VC++.NET.
http://msdn.microsoft.com/vstudio/productinfo/sysreqs/default.aspx
I seem to remember there are some additional issues...
July 8, 2004 at 4:08 am
You can also use DBCC ERRORLOG to achieve the same thing
July 8, 2004 at 1:22 am
Viewing 15 posts - 3,121 through 3,135 (of 3,606 total)