Viewing 15 posts - 1 through 15 (of 43 total)
Try the following
DECLARE @REAL1 float
SET @REAL1 = 163773.58
DECLARE @real float
SET @real = @REAL1
select @real
used float instead of real
March 10, 2010 at 3:24 am
If you still want order by in both querries use inner querry, but ideally using order by at the end of the both querries should also work for you
March 4, 2010 at 4:12 am
This is may be because of higher report body width
February 4, 2009 at 2:22 am
U can get it using ModifiedDate property
June 20, 2008 at 6:31 am
I dont think it is a relavent question.
As if u direct execute them how do u get data into inserted..... tables.
So, it can not be allowed to do like that.
June 20, 2008 at 5:53 am
It is not a glitch....
It is working fine...
As a nature the input is truncated to variable definition length10
So it is returning 10letters only
May 20, 2008 at 6:04 am
Can u pl help in letting me know what r the manual changes to be made?
Thanks in Advance
Giri
May 16, 2008 at 6:33 am
Thanks for your reply.
I tried the same and found that the columns added in detail part of matrix table were reflecting under each year as columns.
Let me know if u...
May 16, 2008 at 6:03 am
if u can send me the result or script of function......
SELECT * FROM dbo.someStringSplitFunction('String To Split', 'Delimiter')
then some way can be sugested.........
March 6, 2008 at 8:58 pm
hi........... try the below querry
select distinct month_yr,
convert(datetime,'01/' + month_yr,101) from emp_dd
March 6, 2008 at 8:13 am
u can try using below syntax in where clause
where len(colname) < 12
March 6, 2008 at 3:54 am
--try with this code
CREATE Procedure Search
@TicketID int
AS
BEGIN
IF (@TicketID>0)
BEGIN
SELECT * from Tickets
WHERE UserID= '10' AND TicketID=@TicketID
END
ELSE
BEGIN
...
March 5, 2008 at 3:04 am
just add index on the sort column, it will help ur querry and then it will be same on both the servers
March 5, 2008 at 2:55 am
Viewing 15 posts - 1 through 15 (of 43 total)