Viewing 15 posts - 15,421 through 15,435 (of 18,923 total)
Why, you'll have to take the day off now??
July 8, 2005 at 8:00 am
Did you read my idea about a cookie (javascript). Shouldn't be too hard to install.
As for making it happen, start a reply, wait an hour (15/20 minutes seems to...
July 8, 2005 at 7:58 am
Can you give the rest of the detais??
Sample data/ddl and output in the other tables would really help a lot
.
July 8, 2005 at 7:54 am
You know you can edit your posts, right??
Ya I saw it afterwards... call it wrong timing
.
July 8, 2005 at 7:51 am
Well it can be done on the server. But the way it is done is to create a new connection in the proc and execute a statement in that...
July 8, 2005 at 7:50 am
I'm not the expert, but I know that they'll want to know this :
What error message are you getting?
July 8, 2005 at 7:48 am
I post this code all the time :
IF Object_id('ListTableColumns') > 0
DROP FUNCTION ListTableColumns
GO
CREATE FUNCTION dbo.ListTableColumns (@TableID as int)
RETURNS varchar(8000)
AS
BEGIN
Declare @Items as varchar(8000)
SET @Items = ''
SELECT
@Items = @Items + C.Name...
July 8, 2005 at 7:44 am
Can't be done. You can't garantee that one execution will end before the other and I don't think that 2 records set would be returned anyways.
How long does it...
July 8, 2005 at 7:15 am
Sorry about the loss of formating...
This is not the shortest way of writting the code but it works well and gives a remote procedure call on the server instead of...
July 8, 2005 at 7:13 am
Probabely won't be faster... might even be slower.
execution plan :
--use the results in text mode (make sure you can show more than 255 characters per line in tools/options/results/max char...
July 8, 2005 at 7:08 am
Viewing 15 posts - 15,421 through 15,435 (of 18,923 total)