Viewing 15 posts - 466 through 480 (of 600 total)
Sorry I meant management studio..
no it doesn't install...that
only configuration manager
November 12, 2009 at 11:58 am
Okay since I can't do an inline upgrade..I copied out the MDF & LDF.
then I uninstalled SQL 2000, rebooted.
when I install SQL 2005 it doesn't install Enterprise manager...when I look...
November 12, 2009 at 11:23 am
Thanks Nabha!
Exactly what I needed.
Good karma to you.
November 12, 2009 at 7:25 am
I figured it out
thanks anyway
November 7, 2009 at 5:06 pm
Thank man...
It's saying invalid column name borrowerid
November 6, 2009 at 11:20 am
Thankagain..
what if I need to add a where clause to the above query
Where l.branchoffice not in ('01','02')
October 29, 2009 at 10:13 am
Thanks Dave!!!
Thanks to the rest of you guys also!
Good karma to you!
October 29, 2009 at 10:11 am
Sorry Dave you are correct I meant to be on the 2005
how do I do that calculation?
October 29, 2009 at 9:58 am
SET ANSI_NULLS OFF
GO
SET QUOTED_IDENTIFIER OFF
GO
select l.loanid, l.branchoffice, l.AcquiredFrom,
l.previouslnnum, b.lastname, b.firstmiddlename,
p.addressline1, p.addressline2, p.city,
p.state, p.zip, l.originalamt,
s.primstat, p.appraisalvalue, l.glplan
--FROM loan L, property P, borrower B, status s
FROM loan L
...
October 29, 2009 at 9:46 am
Okay..pretty sure I need the columns in the other tables
I have no idea how to do that can you give me an example?
October 29, 2009 at 9:35 am
That didn't work, here's the entire statment:
SET ANSI_NULLS OFF
GO
SET QUOTED_IDENTIFIER OFF
GO
select distinct l.loanid, l.branchoffice, l.AcquiredFrom,
l.previouslnnum, b.lastname, b.firstmiddlename,
p.addressline1, p.addressline2, p.city,
p.state, p.zip, l.originalamt,
s.primstat, p.appraisalvalue, l.glplan
--FROM loan L, property P, borrower B,...
October 29, 2009 at 7:49 am
Viewing 15 posts - 466 through 480 (of 600 total)