Forum Replies Created

Viewing 15 posts - 1,606 through 1,620 (of 5,841 total)

  • RE: Run Stored Procedure without Writing to Transaction Log?

    Hmm. If you are deleting a large fraction of a table it is often best to drop existing non-clustered indexes and then rebuild after DML.

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: Run Stored Procedure without Writing to Transaction Log?

    mark.worthen (2/26/2015)


    I was wondering if there is a way to have a process run that will not write its changes to the transaction log? I have a process that...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: Starting and Stopping a Job

    One of the BEST ways to learn about SQL Server is to set up a profiler trace capturing RPC batch completed and TSQL batch completed and then have a GUI...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: Alpha numeric range groupping

    I think this is just a variant of the "gaps and islands" problem, for which there are many solutions. Binoogle itzik ben-gan gaps and islands to find a number...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: DBCC MEMORYSTATUS

    Binoogle will get you the only resources out there that I know of. I still use the 2005 link too. It does need a refresh (and better documentation...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: Plans not staying in proc cache

    Possibly bug in Spotlight. Your your own DMVs to see what is in/happening in the procedure cache. Glenn Berry's SQL Diagnostics scripts are a good resource.

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: performance table insert Urgent

    daniarchitect (2/24/2015)


    Experts thank you all for responding quick and valuable inputs, it an eye opener.

    we found a trigger which calls a procedure that uses a transaction , that caused the...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: performance table insert Urgent

    daniarchitect (2/24/2015)


    Experts

    We have 6 tables , 5 of them references 1 parent table.

    there is one insert process through a stored procedure that an application is calling to insert data...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: convert Stored Procedure to User Defined Function

    A Scalar UDF is one of the worst things you can do in SQL Server. Best BY FAR is to just inline the logic and use it directly in...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: 2012 Alwayson

    Please provide more detail about your scenario(s). You haven't given us enough information to help you.

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: HELP Creating LOGIN

    I assume you are calling this a variable: %computername%? Not allowed IIRC.

    Did you try with a specific name instead? Also, exactly what is the error you are getting??

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: DBA Check list for performance tuning

    sp_whoisactive. Free and AWESOME tool to show you what is happening on the server right now. Also can do differential time-based analysis. Find it on sqlblog.com, where...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: Ideas please

    Ford Fairlane (2/16/2015)


    Thanks for the responses, I was not expecting it to be easy but to make it worse, the connection between the two systems is over a microwave link......

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: Another Interesting Always On Question

    Is there Always On already established in the existing infrastructure?? I must have missed that. I read it that the AG stuff was going to be introduced in...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: Another Interesting Always On Question

    You can always set up your own log shipping instead of using the built-in stuff, which can use whatever backups you already do. I had to do that for a...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

Viewing 15 posts - 1,606 through 1,620 (of 5,841 total)