Forum Replies Created

Viewing 15 posts - 1,156 through 1,170 (of 1,183 total)

  • RE: Can Email Address Contain a Period Character?

    According to the BOL any address will work.

    BOL ... "The report server does not validate e-mail addresses or obtain e-mail addresses from an e-mail server. You must know in advance...

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: MDX query

    Sorry, I was speaking beyond my knowledge level. *grin*

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: Automating Reports

    This may help....

    http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=150&messageid=279460

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: MDX query

    Is your empID an int datatype?

    Try

    SELECT CAST (empID AS varchar(20)) + empName

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: UpdateText() not working correctly

    Sergiy is correct, but to fix your issue after the fact....

    I see two issues here, and keep in mind I'm only beginning to work with text and ntext fields..

    1. ~STOLEN...

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: How do select previous 18 months of data?

    I knew there was an easier way [KH] ....

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: How do select previous 18 months of data?

    There may be an easier way, but this works....

    select

    dateadd( day, 0, cast( datepart ( month, dateadd( month, -18, getdate() ) ) as varchar(2) ) +

    ...

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: SQL Server Reports

    Karen,

    I've come up with a way to do this in standard. Its rough and I plan on tidying it up, but we're using it at my company and it works.

    You...

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: Matrix Subtotal

    This is just a quick thought, but did you don't need "AND" in your IIF. And I think you left out the "1" in the line.

    =IIF(Fields!Field2.Value = 0, 0, SUM(Fields!Field1.Value)...

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: Update field problem

    If the serial number is not an issue, this works.

    -----------

    declare @I int, @rowcount int, @ctr int, @prod varchar(50), @lastprod varchar(50)

    select

    identity(int, 1, 1) as nDex,

    1 as seq,

    prodid,

    subpartid,

    subpartdesc,

    subpartserial

    into

    #tmp

    from

    subparts

    order...

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: Update field problem

    Does the table PC have a column with the serial numbers?

    I have a second table PC that has a ProdID, PC_SubpartDesc1, PC_SubpartDesc2, PC_SubpartDesc3, PC_SubpartDesc4

    >> with the matching serial numbers1...

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: Min value seperated from dataset

    In your query convert the nulls to a date that you won't hit...

    I.E.

    select

    field1,

    field2,

    IsNull( Date, '12/31/2999' ) as...

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: How to speed up initial report.

    Another thing to keep in mind is that the more aggregation and grouping that is done through RS, the more time the report will take to run. You may want...

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: reporting services using SOAP

    I would strongly recommend the "Hitchhikers Guide to SQL Reporting Services" There is a TON of information, and it's not a hard read!

    Not only does it give samples using SOAP,...

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: error 4701

    If you set the "Cascade Delete Related Records" on the tables' relationship, this will allow you to Truncate them.

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg

Viewing 15 posts - 1,156 through 1,170 (of 1,183 total)