Viewing 15 posts - 8,986 through 9,000 (of 18,926 total)
:w00t:!, the only that comes to mind quickly is rewrite the damn thing. HOwever I'm sure you've considered that option and ruled it out. The only other option I...
October 3, 2007 at 4:34 pm
I see all the filters in the inner join (except for the is null)...
Select w.* from webs w
LEFT JOIN docs d
ON w.id = d.webid
and w.id = '12345'
AND...
October 3, 2007 at 4:24 pm
What was the problem? Your solution will surely save someone's butt someday so it would really help him if you could post the solution ;).
October 3, 2007 at 4:20 pm
Do you have any ideas on how to test this? The only 2 tests I did were not conclusive.
October 3, 2007 at 4:18 pm
I must be blind now... what's wrong with the last suggested query?
October 3, 2007 at 3:02 pm
This is a known problem. Thank you for helping make this site even better.
October 3, 2007 at 2:07 pm
I'm sure you did, but just in case : Did you delete all the cookies, local files from IE?
October 3, 2007 at 2:04 pm
CREATE TABLE #Test (a VARCHAR(30))
INSERT INTO #Test (a) SELECT REPLICATE('A', 29)
ALTER TABLE #Test
ALTER COLUMN a VARCHAR (29)
--this works fine
DROP TABLE #Test
GO
CREATE TABLE #Test (a VARCHAR(30))
INSERT INTO #Test (a) SELECT REPLICATE('A',...
October 3, 2007 at 1:44 pm
Maybe it's in high penetration for the new licenses, or new customers. But that does not account for old machines being reinstalled with 2000. After all this is...
October 3, 2007 at 1:37 pm
Just for those who don't have Acces to see what I mean, see attached file.
October 3, 2007 at 1:21 pm
I'm still not conviced. I understand the logic behind what is said that it is better to check prior to make any changes... but I would assume that MS...
October 3, 2007 at 12:56 pm
Maybe we should all start using ACCESS as GUI for SQL Server.
As far as I know, we all script everything we do anyways, so there's no point to keep SSMS...
October 3, 2007 at 12:49 pm
Not that I know of. I like what they did in Access 2007, but it doesn't appear to be possible in SSMS (Express anyways).
October 3, 2007 at 12:47 pm
Viewing 15 posts - 8,986 through 9,000 (of 18,926 total)