Viewing 15 posts - 121 through 135 (of 172 total)
I agree with several of the posters that have indicated a general lack of business interest in making a full commitment to the full use of SP. It may...
January 3, 2012 at 12:55 pm
It would probably be easiest to include the week datepart in your sql query, then use the week to group the report. If you can't change the query, the...
December 30, 2011 at 1:54 pm
where flow_START_DATE is not null and flow_START_DATE < '2012-01-03'
and flow_end_date is null or flow_end_date > '2012-01-03'
I'd suggest adding some parens to the where - change to :
where
(flow_START_DATE is not...
December 29, 2011 at 3:00 pm
I think it's jsut the way that Excel handles a variance in data type within a column. your first few rows make Excel think you have a text data...
December 23, 2011 at 2:01 pm
Mike Dougherty-384281 (12/23/2011)
Just to clarify for those confused by the eating association to these animals, we don't eat black cats for Halloween either.
Ewww! Of course not. They are far...
December 23, 2011 at 1:29 pm
You can't pass the date function in directly, pass it through a variable:
from MSDN: http://msdn.microsoft.com/en-us/library/ms189915.aspx
-- Passing the function value as a variable.
DECLARE @CheckDate datetime;
SET @CheckDate = GETDATE();
EXEC dbo.uspGetWhereUsedProductID 819, @CheckDate;
GO
December 21, 2011 at 7:18 pm
You might look through this article as well:
December 20, 2011 at 6:43 pm
Remove the last comma before the end paren
December 20, 2011 at 6:34 pm
fwiw - there certainly are some zips that cross state borders. Wikipedia says:
Because ZIP codes are intended for efficient postal delivery, there are unusual cases where a ZIP code...
December 20, 2011 at 6:01 pm
sort by the month datepart integer, but display the month name
December 13, 2011 at 4:52 pm
You can always copy and paste. Just click the corner in the results grid to select all, then copy (ctrl-c), and paste into excel. By default when the...
December 13, 2011 at 3:13 pm
you could decompose the string and recompose in a date-like format, the cast and convert both work ok in sql query. dunno about informatica. the date string you...
December 9, 2011 at 6:46 pm
just to consider - you won't be able to open reports created in old bids with 2008 r2 bids. different namespace.
December 8, 2011 at 6:38 pm
Viewing 15 posts - 121 through 135 (of 172 total)