Forum Replies Created

Viewing 15 posts - 376 through 390 (of 1,183 total)

  • RE: scheduling emails

    in the report server, browse to your report and then select the subscriptions tab > new subscription ...

    ______________________________________________________________________

    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: View cross references

    Red Gate has a LOT of DB tools, and Dependency Tracker is one of them.

    Free for 14 days.

    http://www.red-gate.com/products/SQL_Dependency_Tracker/index.htm?utm_source=google&utm_medium=cpc&utm_content=brand_aware&utm_campaign=sqldependencytracker&gclid=CKnulP7Hn6ICFSQ65QodIkl4xw

    ______________________________________________________________________

    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: Enforce entry in one of two fields

    vba-dev (5/17/2010)


    I have to believe this question has been asked, and answered, probably many times. But, I can't seem to find the right combination of keywords to find anything useful...

    ______________________________________________________________________

    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: Data driven subscription with stored procedure bringing server down

    This may not answer your question directly, but may offer an alternative solution if you can't get the answer you need elsewhere....

    http://www.sqlservercentral.com/articles/Development/2824/

    ______________________________________________________________________

    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: Maximum Date

    and the question is.....?

    ______________________________________________________________________

    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 2008 Express

    In your ODBC setup/properties, make sure you have the default database set to the correct DB. Sounds like you have it set to be master.

    ______________________________________________________________________

    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 alert on conditional data in table

    Create a job that runs every 60 minutes that checks the date/time and send your response from there.

    ______________________________________________________________________

    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: Dates on the Where Statement

    select * from personnel

    where hiredate >= '20080415'

    enclose the date in apostrophes '

    😀

    ______________________________________________________________________

    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: Maximum stored procedure, function, trigger, or view nesting level exceeded (limit 32).

    It doesn't APPEAR to be in the proc. One of your functions maybe?

    ______________________________________________________________________

    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: Start Date of the Month

    itskumar2004 (4/9/2010)


    I recommend that you use the Search feature on this site before you post in the future.

    http://www.sqlservercentral.com/articles/Date+Manipulation/69694/

    I did search the site and found this article but...

    ______________________________________________________________________

    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: Wildcard to show null values?

    Try

    HAVING DIRECTORATE_CODE LIKE CASE WHEN @Directorate = 'ALL' THEN DIRECTORATE_CODE ELSE @Directorate END)

    ______________________________________________________________________

    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: Maximum stored procedure, function, trigger, or view nesting level exceeded (limit 32).

    Do you have a batch terminator "GO" at the very END of the procedure and function code window?

    ______________________________________________________________________

    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: Start Date of the Month

    I recommend that you use the Search feature on this site before you post in the future. 😀

    SELECT DATEADD(mm, DATEDIFF(mm,0,GETDATE()), 0)

    Can be found from yesterday's article here --> http://www.sqlservercentral.com/articles/Date+Manipulation/69694/ 😉

    ______________________________________________________________________

    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 fing first letter is a number or letter in a column

    Jeff Moden (4/7/2010)


    Jason Selburg (4/7/2010)


    test for numeric:

    ISNUMERIC(LEFT(yourFieldName,1)) = 1

    Heh... you sure about that ol' friend?

    SELECT ISNUMERIC(LEFT('$Howdy',1)),

    ISNUMERIC(LEFT(',Howdy',1)),

    ...

    ______________________________________________________________________

    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: Changing the URL, or blocking external users

    shannonjk (4/7/2010)


    The '05 Instance has security, however I am not the reporting person I am the DBA, however seeing as our reporting person left 2 weeks ago...I have picked up...

    ______________________________________________________________________

    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 - 376 through 390 (of 1,183 total)