Viewing 10 posts - 31 through 40 (of 40 total)
I think so.
Timeout option is not directly related with WAITFOR TSQL is an optional part.
June 17, 2008 at 9:33 am
The best way could be send the date in ANSI format: yyyy-mm-dd
April 24, 2008 at 12:28 pm
The use of UDF is great but... (always there is a BUT), when you use UDF in large tables the performance of queries would be "slow down". Remember: Computed columns via...
May 9, 2006 at 8:42 am
Thanks mdaniel,
Let me try. I'm almost sure that's the solution.
Bye
November 25, 2005 at 11:13 am
Yes!... you right
Ok... add a new attribute with the day of the date and index it.
I think the WHERE is more complex than that (is only a part of the...
November 24, 2005 at 2:26 pm
No errors are displayed.
About what are you talking when you write "proxy account", i think is the same permissions if you call the webservice from browser or from cmd shell...
November 24, 2005 at 2:19 pm
Hi,
You can check using this qry:
USE yourDatabase
select * from sysobjects where name = 'yourTable'
Hello from Guatemala,
Ricardo
November 24, 2005 at 12:15 pm
Easy...
declare @YY as varchar(4), @mm as varchar(2)
set @YY = '2000'
set @mm = '12'
select col1, col2, datecol, ...
from tablename
where DAY(datecol) between 1 and DAY(DATEADD(Month, 1, CONVERT(DATETIME, @YY...
November 24, 2005 at 11:14 am
Very funny, is almost a true history.
All of us sometimes happend one of this issues.
Hello from Guatemala,
Ricardo
November 24, 2005 at 10:33 am
Viewing 10 posts - 31 through 40 (of 40 total)