Viewing 15 posts - 991 through 1,005 (of 1,183 total)
Either of these should work fine...
SELECT
fcid
,species
,ISNULL([abam], 0) AS [abam]
,ISNULL([psme], 0) AS [psme]
,ISNULL([arme], 0) AS [arme]
FROM
...
May 3, 2007 at 5:17 pm
Change your join from JOIN to INNER JOIN.
JOIN by itself is a LEFT JOIN which pulls all records from the left table (HOLDING in your case) and only the records...
May 3, 2007 at 1:39 pm
Mark,
DDL is "Data Definition Language" such as
CREATE TABLE [dbo].[AUDIT](
[AUDITID] [int] NOT NULL,
[PARTYID] [int] NOT NULL ………
To get the DDL for existing tables, right click on...
May 3, 2007 at 9:51 am
Joe,
I understand your point, the question could/should have been posted with more info, but it WAS enough information to give an answer to.
Again, there could have been more useful info...
May 2, 2007 at 11:26 pm
Mark,
It is a Newbie forum. That's why I Only gave one suggestion on future posts. You'll pick it up as time goes buy...
Sorry Joe, Not trying to slam you here,...
May 2, 2007 at 9:13 pm
UPDATE d
SET d.dcol3 = s.scol2
,d.dcol5 = 'Y'
FROM dest_tbl d
INNER JOIN src_tbl s
ON d.dcol2 = s.scol1
WHERE
...
May 2, 2007 at 5:06 pm
You didn't include the table def for the "CSCounty" table But this should do the trick
UPDATE CSZ
SET SFZipIndexCode = SFMSAindexcode
May 1, 2007 at 5:59 pm
Yes, it is a bit of useful info.
I only ran across it because we hired a new developer last year (I'll keep my opinion to myself...GRIN) But he thought...
May 1, 2007 at 5:41 pm
Moe is right on one point. It's really up to you which route you want to go. Either use my method, or continue to use VS 2003 until the upgrade.
It's...
May 1, 2007 at 5:06 pm
OK, you seem to be doing it right. What I would suggest, is to download "edit" a report that you haven't modifed in 2005 yet. Check it's namespace (xmlns), it...
May 1, 2007 at 5:01 pm
MOE, I think you're missing my point. 🙂
You can edit the report in VS (any version). Save the file, locate the .RDL file on your PC, open in notepad and...
May 1, 2007 at 4:30 pm
Did you edit the RDL in notepad and change the xmlns="" entry, and then upload through ReportManager?
This should work, I've done it many times.
You can't "Deploy" them from VS.
May 1, 2007 at 4:16 pm
Viewing 15 posts - 991 through 1,005 (of 1,183 total)