Forum Replies Created

Viewing 15 posts - 616 through 630 (of 3,666 total)

  • RE: stairways series

    There are many option for saving something so you can read it later. I recently started using Pocket (https://getpocket.com). Pocket, or similar services, might give you that functionality,not just...



    Alvin Ramard
    Memphis PASS Chapter[/url]

    All my SSC forum answers come with a money back guarantee. If you didn't like the answer then I'll gladly refund what you paid for it.

    For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Does setting a database offline free up resources on the server

    Grant Fritchey (6/26/2015)


    Alvin Ramard (6/26/2015)


    Any maintenance plans you're running that look at all online databases would have less work to do if you took those databases offline. That might help...



    Alvin Ramard
    Memphis PASS Chapter[/url]

    All my SSC forum answers come with a money back guarantee. If you didn't like the answer then I'll gladly refund what you paid for it.

    For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Does setting a database offline free up resources on the server

    Any maintenance plans you're running that look at all online databases would have less work to do if you took those databases offline. That might help if you only have...



    Alvin Ramard
    Memphis PASS Chapter[/url]

    All my SSC forum answers come with a money back guarantee. If you didn't like the answer then I'll gladly refund what you paid for it.

    For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: convert an INT field into a datetime field

    dmarz96 (6/25/2015)


    This particular report would be ran after the books are closed.

    So if it was ran today it would be for period 201505. Most cases this report would run for...



    Alvin Ramard
    Memphis PASS Chapter[/url]

    All my SSC forum answers come with a money back guarantee. If you didn't like the answer then I'll gladly refund what you paid for it.

    For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Select column where only 4 digits in the raw,

    I think I figured out what you're looking for.

    Try changing the where clause to:

    WHERE c LIKE '%[0-9][0-9][0-9][0-9]%'



    Alvin Ramard
    Memphis PASS Chapter[/url]

    All my SSC forum answers come with a money back guarantee. If you didn't like the answer then I'll gladly refund what you paid for it.

    For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Select column where only 4 digits in the raw,

    mario17 (6/25/2015)


    Hi, all

    How can I do this in TSQL, there are alot of wild chars but I could not find how to count them, in case below I only...



    Alvin Ramard
    Memphis PASS Chapter[/url]

    All my SSC forum answers come with a money back guarantee. If you didn't like the answer then I'll gladly refund what you paid for it.

    For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: convert an INT field into a datetime field

    You say you want to run this on a monthly basis, so if I ran this with today's date, what month should the period cover?



    Alvin Ramard
    Memphis PASS Chapter[/url]

    All my SSC forum answers come with a money back guarantee. If you didn't like the answer then I'll gladly refund what you paid for it.

    For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: SQL SERVER RegEx Question

    fpchavula (6/25/2015)


    I have been trying to get this condition to be TRUE, but can't seem to get it right.

    Any suggestions would be helpful. Thanks.

    DECLARE @stopat datetime

    SET @stopat = '2015-06-23 02:16'

    IF...



    Alvin Ramard
    Memphis PASS Chapter[/url]

    All my SSC forum answers come with a money back guarantee. If you didn't like the answer then I'll gladly refund what you paid for it.

    For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: convert an INT field into a datetime field

    dmarz96 (6/25/2015)


    GOOD DAY SqlSanctum,

    Maybe I didn't explain myself correctly, or I'm just confused.

    Both fields

    @BeginPeriod INT,

    @EndPeriod INT

    are being used as parameter(s) in my where clause

    WHERE TT11.PERIOD >= ''+@BeginPeriod+''

    AND TT11.PERIOD...



    Alvin Ramard
    Memphis PASS Chapter[/url]

    All my SSC forum answers come with a money back guarantee. If you didn't like the answer then I'll gladly refund what you paid for it.

    For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: how to remove spaces

    wallywizard (6/25/2015)


    I read about using the REPLACE command with char(13) AND char(10), but I dont know how to use this. Can anyone please help me?

    REPLACE(YourString, CHAR(10), '') would replace the...



    Alvin Ramard
    Memphis PASS Chapter[/url]

    All my SSC forum answers come with a money back guarantee. If you didn't like the answer then I'll gladly refund what you paid for it.

    For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Dynamic Flat File Connection Manager is SSIS?

    You'll have to manually update the connection manager each month.

    You could use a script task to split the files into a number of files, one for each year, each one...



    Alvin Ramard
    Memphis PASS Chapter[/url]

    All my SSC forum answers come with a money back guarantee. If you didn't like the answer then I'll gladly refund what you paid for it.

    For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Does setting a database offline free up resources on the server

    As long as they are not being accessed anybody, then they should not be using any resources.



    Alvin Ramard
    Memphis PASS Chapter[/url]

    All my SSC forum answers come with a money back guarantee. If you didn't like the answer then I'll gladly refund what you paid for it.

    For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Problem of executing T-SQL Stored procedure with Parameter NULL

    keshab.basnet (6/25/2015)


    ALTER PROCEDURE [dbo].[p_sub_agent_Grp_report]

    @parent_pay_agent_cd VARCHAR(25) ,

    @tagno NUMERIC(18,0) =...



    Alvin Ramard
    Memphis PASS Chapter[/url]

    All my SSC forum answers come with a money back guarantee. If you didn't like the answer then I'll gladly refund what you paid for it.

    For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Are the posted questions getting worse?

    Luis Cazares (6/24/2015)


    OMG, I forgot that 24 hours of PASS started today!

    Oh RATS!!!!

    Guess I'll have to watch the recorded sessions later.



    Alvin Ramard
    Memphis PASS Chapter[/url]

    All my SSC forum answers come with a money back guarantee. If you didn't like the answer then I'll gladly refund what you paid for it.

    For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Remove a value from a union

    Meatloaf (6/24/2015)


    Thank you all, the problem has been solved. What I am using is:

    SELECT * FROM #ContactList

    UNION ALL

    SELECT DISTINCT UPPER(LEFT(vchLastName,1)),NULL,NULL,NULL,NULL FROM #ContactList

    ORDER BY vchLastName, vchFirstName

    Great!...



    Alvin Ramard
    Memphis PASS Chapter[/url]

    All my SSC forum answers come with a money back guarantee. If you didn't like the answer then I'll gladly refund what you paid for it.

    For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]

Viewing 15 posts - 616 through 630 (of 3,666 total)