Viewing 15 posts - 106 through 120 (of 236 total)
Adiga (1/13/2011)
Yes. You would be able to connect to other SQL Server instances using SSMS of Express Edition.
will be there any limitations? my remote sql server 2005 is an...
January 13, 2011 at 9:04 am
2008 does not support backward compatability, so you can do this. You need to do the re work using visual studio 2005.
January 12, 2011 at 2:08 am
Nice article Geoff, really usefull
December 13, 2010 at 2:51 am
You can use VARCHAR(MAX) or NARCHAR(MAX) if you are using sql server 2005 and above.
Generally when you are inserting the comments from the front end you can use some validations...
December 7, 2010 at 11:15 pm
select max(coursefees)-sum(fee.amount)
from feespaid fee,batch
where
substring(cast(fee.rollno as varchar(50)) ,1,2)=substring(cast(batchcode as varchar(50)),1,2) and
rollno = @prollno
group by rollno,batchcode
the above Query is returning more thatn one row for the @diff variable where it is permited...
December 7, 2010 at 11:09 pm
Lowell (12/7/2010)
there is nothing a cursor does that a set based operation cannot do, and the set based would be a couple of...
December 7, 2010 at 7:14 am
Lowell (12/7/2010)
if your SSIS package is insertint/deleting/updating rows, and then calling the procedure, the statistics are probably very different than when the stored procedure was...
December 7, 2010 at 6:43 am
TRY/CATCH helps to write logic separate the action and error handling code in sql server.
if some action fails in the try block you can roll back it in the catch...
November 30, 2010 at 11:50 pm
What is the logic in getting the desired values, i havn't find any diffrence in your table and the out put other than some change in the order.
November 30, 2010 at 11:37 pm
LutzM (11/30/2010)
looks like a missing comma before the CASE statement.I'd also recommend to add an alias to your CASE .. END. 😉
apart from the above your code is also
having...
November 30, 2010 at 11:13 pm
rocky_498 (11/30/2010)
Sorry for late reply, Thanks all of you guys your help. I can't change my target table.I really appreciate if some 1 send me " Expression", Thanks.
the solution...
November 30, 2010 at 10:57 pm
Jeff Moden (11/30/2010)
autoexcrement (11/30/2010)
sharath.chalamgari (11/30/2010)
some time back i was working on validating a column in the database and i came across this issue and we had...
November 30, 2010 at 10:38 pm
you can update the column to 'YES' using the from clause and inner join. some thing like
update PmtTrn
set PmtTrn.column_yes = 'YES'
From PmtTrn
Inner Join AdjTrn
on AdjTrn.itrn = PmtTrn.itrn
November 30, 2010 at 10:26 pm
Viewing 15 posts - 106 through 120 (of 236 total)