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.

  • 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...

  • 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...

  • 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...

  • 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...

  • 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.

  • 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...

  • 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...

  • 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...

  • RE: 2012 Alwayson

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

  • 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??

  • 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...

  • 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......

  • 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...

  • 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...

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