Viewing 15 posts - 181 through 195 (of 253 total)
Its difficult to do it in one query. You can either use cursors or write a UDF that takes the start time and returns the end time and call it...
June 7, 2005 at 8:42 am
check this out : http://vyaskn.tripod.com/code/propercase.txt
June 2, 2005 at 11:44 am
Does the company sponsor visa ?
May 30, 2005 at 12:49 pm
you can throw in a where condition :
where convert(int,col1) = col1
when you convert to int you lose the decimal part. So if its still equal to the original value then...
May 26, 2005 at 11:56 am
>>Or ...
If you have an identity column in teh table do the insert and then use
SET guid = @@IDENTITY
----------------------
SCOPE_IDENTITY() is more accurate than @@IDENTITY. Check out books online for more...
May 19, 2005 at 12:01 pm
looks like you are doing this totalling inside an RS report. you can do something like :
=((Sum(Fields!Valuation.Value * 65/100)) * 0.125)
in your GST field value.
or even add a new...
May 19, 2005 at 11:57 am
I think you can set it in the properties section of the report on the Report Manager. You can also set it at design time from VS.NET.
May 16, 2005 at 9:27 am
Try increasing the timeout property in the connection string.
May 16, 2005 at 9:11 am
also post the structure of your tables ( the parent, child) ones..
May 11, 2005 at 11:55 am
at the beginning of the stored proc. and turn it back on at the end.
May 11, 2005 at 10:10 am
(CONVERT(VARCHAR(10),DCCntHst.SentDate,120) = CONVERT(VARCHAR(10), @paramdatetime, 120))
May 11, 2005 at 9:51 am
Sorry to digress again..Yesterday when this post was posted there were no replies all day and suddenly the thread runs into 2 pages over night..??. I think there is hardly...
May 11, 2005 at 9:44 am
you can prbly create a connected dataset with a table and do the update all at once and commit the changes using the dataset.acceptchanges() method. check this article from...
May 10, 2005 at 10:40 am
I think Remi is right in that when you use COUNT(*) the optimizer chooses which index to use and returns the count faster as compared to COUNT(1) which need not necessarily be...
May 10, 2005 at 10:36 am
May 10, 2005 at 10:02 am
Viewing 15 posts - 181 through 195 (of 253 total)