Forum Replies Created

Viewing 15 posts - 121 through 135 (of 173 total)

  • RE: SharePoint - Subversive?

    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...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: SSRS expression

    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...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Issue with logical operators

    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...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Save SSRS saved to Excel certain Fields have green arror - Convert to Number

    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...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Happy Holidays

    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...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Msg 102, Level 15 when calling a procedure

    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

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: SSRS 2008, custom code to format reports

    Agree completely

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: SSRS 2008, custom code to format reports

    You might look through this article as well:

    http://www.simple-talk.com/content/print.aspx?article=722

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Switch statement problem

    Remove the last comma before the end paren

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: i need to do a reverse lookup on zip and get city and state for us and canada.

    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...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Dynamic generation of months for a report in sql

    sort by the month datepart integer, but display the month name

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Exporting Data into Excel Sheets

    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...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: SQL for Converting Field Type CHAR to Date Format 'YYYY-MM-DD'

    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...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: No Overtime

    Does Overtime float like a duck?

    It's a fair cop

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Installing 2008 R2

    just to consider - you won't be able to open reports created in old bids with 2008 r2 bids. different namespace.

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]

Viewing 15 posts - 121 through 135 (of 173 total)