Viewing 15 posts - 256 through 270 (of 366 total)
Nice question, thank you. It's nice to see questions on reporting services, too.
Regards,
Iulian
August 12, 2011 at 6:55 am
I am using this query when I need to inventory the subscriptions:
SELECT
Catalog.ItemID,
Catalog.Path,
Catalog.Name,
Catalog.ParentID,
Catalog.Type,
Catalog.[Content],
Catalog.Intermediate,
Catalog.SnapshotDataID,
Catalog.LinkSourceID,
Catalog.Property,
Catalog.Description,
Catalog.Hidden,
Catalog.CreatedByID,
Catalog.CreationDate,...
August 8, 2011 at 7:41 am
August 8, 2011 at 6:40 am
It is not clear to me what MANIPULATE means, could you please define.
Iulian
August 8, 2011 at 2:45 am
Thanks for the question
Regards,
Iulian
August 3, 2011 at 11:52 pm
Data_God (8/3/2011)
2nd comment on this QOTD. Haven't been able to do that in quite a while. Thanks for the good question. I got it right as I just recently had...
August 3, 2011 at 11:52 pm
John Mitchell-245523 (8/3/2011)
Iulian -207023 (8/3/2011)
or instead of :
ARRIVAL_SCHEDULE_DT <= dateadd(mm, 3, getdate())
you can use this condition too:
datediff(mm, ARRIVAL_SCHEDULE_DT, getdate()) <= 3
Iulian
I would advise against doing that, since it would make...
August 3, 2011 at 11:46 pm
Hi, You can try something like:
SELECT
ISNULL([column1], '') AS A
, ISNULL([column1], 0) AS B
, ISNULL([column3], '') AS C
, CASE WHEN ISNULL([Column 1],'') = '' ...
August 3, 2011 at 4:44 am
or instead of :
ARRIVAL_SCHEDULE_DT <= dateadd(mm, 3, getdate())
you can use this condition too:
datediff(mm, ARRIVAL_SCHEDULE_DT, getdate()) <= 3
Iulian
August 3, 2011 at 4:13 am
Well..., it is not very clear, could you please use but I think you can start working with this:
SELECT *
FROM table_name
WHERE
-- PORT_CD = 'BEZEE' AND
ARRIVAL_SCHEDULE_DT...
August 3, 2011 at 4:11 am
I am interested in this subject too, could you please post a code sample.
Thank you,
Iulian
July 28, 2011 at 2:52 am
You can trace the execution of a T-SQL statemen using SQL Server Profiler.
Regards,
Iulian
July 28, 2011 at 2:33 am
paul s-306273 (7/19/2011)
Why is it called ramp-up though?
Good point, looking at wiki:
Ramp up is a term used in economics and business to describe an increase in firm production...
July 19, 2011 at 2:53 am
Viewing 15 posts - 256 through 270 (of 366 total)