Viewing 15 posts - 6,121 through 6,135 (of 6,486 total)
Also - you are going to want to be clear about whether "3rd week"="3rd FULL week" or not.
There was a recent editorial on here about cool things you could do...
October 10, 2007 at 6:57 am
Count ( column) counts the number of non null values in the column. Count(*) counts all rows regardless of nulls.
October 10, 2007 at 6:45 am
yup - with 2000, yuo need to download it from MS download center separately (they were going to charge for it, and then stopped).
October 10, 2007 at 6:41 am
andrewbrinker (10/8/2007)
October 9, 2007 at 4:06 pm
Right on! Careful what you ask for - you just might get it :hehe:
October 9, 2007 at 3:56 pm
Using a visual tool (allowing for rendering) like VS would allow you to view data (including images) stored in SQL. That being said - in a lot of cases...
October 9, 2007 at 3:51 pm
We just stepped right through data, through metadata, and landed right in metaphysics. I think there's a huge difference between data and results on one side, and truth on...
October 9, 2007 at 3:38 pm
Anyone knowing enough to navigate in query analyzer should be smart enough to find some other way around this - but you could use a group policy to prevent ANY...
October 9, 2007 at 3:10 pm
Actually - it would be in the User interface form.
Assuming .NET 2.0 as a webform:
- form gets 2 visual controls, a drop-down list (with the list of...
October 9, 2007 at 3:00 pm
Are you looking for a blank record between groups? Are you trying to create a report object (as in a SSRS report) of some sort? Views or single...
October 9, 2007 at 2:43 pm
doesn't look like dynamic SQL would buy you any advantage whatsoever. You might try this just slightly friendlier syntax
INSERT INTO Table
SELECT 1, @Param1 WHERE @Param1 IS NOT NULL
UNION...
October 9, 2007 at 2:28 pm
Actually if they're using IP, and DNS hasn't been updated (or rather - DNS still has both names pointing to the IP address) - BOTH aliases should work.
October 9, 2007 at 2:15 pm
Using a select * in conjunction with group by will usually cause that, since * can't be in the group by clause.
Are you sure you're not looking to use the...
October 9, 2007 at 2:12 pm
Well - that's what Steve is getting at - you don't HAVE to have a bunch of stored procedures if you're okay when them running less than ideally. ...
October 9, 2007 at 2:05 pm
Viewing 15 posts - 6,121 through 6,135 (of 6,486 total)