Forum Replies Created

Viewing 15 posts - 9,121 through 9,135 (of 39,810 total)

  • RE: Write Cleaner T-SQL Using Version Control

    billp 37934 (10/5/2015)


    I'm with Jeff on the header saying what the SQL is supposed to do. When debugging if a header says what it's supposed to do and the...

  • RE: Are the posted questions getting worse?

    SQLRNNR (10/2/2015)


    Brandie Tarvin (10/2/2015)


    Lynn Pettis (10/2/2015)


    How do I clear the DMVs without restarting SQL?

    I found this StackOverflow article. Does it help?

    DBCC SQLPERF('sys.dmv_name_here',CLEAR);

    --EDIT: And then this if clearing plan cache too

    DBCC...

  • RE: Test vs. Prod environment - Release methodology... I have a rogue developer I need to stop.

    WayneS (10/2/2015)


    It seems that this would be a good time to explore locking down the production environment. Ideally, developers have no need to access production. They might need periodic access...

  • RE: The Work of the Ancients

    brad_bowzer (10/2/2015)


    I wrote a system in MS access in 1993 and upsized it to SQL Server in 1996. Its been updated constantly but the core is much the same...

  • RE: No Time for Testing

    Iwas Bornready (9/30/2015)


    I develop code in a fashion similar to what you have stated. I also find that expectations change as we develop, especially when we start showing the results...

  • RE: Have a Think

    Iwas Bornready (10/1/2015)


    It sounds good, and may be good. It certainly must be for you. But I have a set amount of work that needs to get done. How do...

  • RE: Have a Think

    Brad Allison (10/1/2015)


    This is great advice that I will share with my small team of SQL Server developers I work with. I usually give them some daily technical inspiration...

  • RE: Have a Think

    Tepluken (10/1/2015)


    Terrific advice. I always take a walk at the end of the day. Usually I will listen to a podcast as I walk to pass the time; however once...

  • RE: Are you a Data Scientist?

    I do usually tell people in Scouts or kids sports that I'm a computer guy. If they know something and want to ask more, I will talk about databases.

  • RE: Cannot find server name

    I'm not clear what you are seeing here.

    You can connect with SSMS. What are the credentials?

    In Data Tools, do you mean SQL Server Data Tools? SSDT? Can you enter the...

  • RE: Could use some advice

    Apart from what has been suggested, I try to solve things like this for one area. Write down the plan for one dimension or entity and solve each one. Then...

  • RE: Installing sql 2012 named instance on production server

    Watch target memory for each server, and try to balance the load. It's up to you to somehow set this between instances.

  • RE: Cannot find server name

    Can you connect with localhost or .?

  • RE: Are you a Data Scientist?

    ccd3000 (9/29/2015)


    Well, I.T. hijacked and cheapened the 'Engineer' moniker a long time ago so why not 'Scientist'?

    Indeed we have.

    That's why I've typically called myself the data janitor.

  • RE: excessive spids in msdb

    You need something like this:

    SELECT

    'SQLAgent - TSQL JobStep (Job 0x'+

    CONVERT(char(32),CAST(j.job_id AS binary(16)),2) +

    ' : Step ' +

    CAST(js.step_id AS VARCHAR(3)) +

    ')', j.job_id, j.name

    FROM msdb.dbo.sysjobs...

Viewing 15 posts - 9,121 through 9,135 (of 39,810 total)