Forum Replies Created

Viewing 15 posts - 1,726 through 1,740 (of 5,841 total)

  • RE: Tracking down the source of Transaction bursts in SQL Server

    You seem to know the time this occurs so you can set up an XE capture to get the batches submitted. You can do the same with sql trace...

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

  • RE: CU Updates

    Right here on SSC!!

    http://www.sqlservercentral.com/search/?q=sql+server+build+list

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

  • RE: SQL Memory Use

    Balance (1/7/2015)


    We have a server that has had a performance issue, for us it is a busy server and normal service has been resumed since a rollback of something that...

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

  • RE: SQL Memory Use

    What are you really trying to do here, and more importantly why are you trying to do it?

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

  • RE: Is it possible to find all tables that has a join with 'tMyTable'

    This isn't 100% accurate, but it will get you close

    select object_name(object_id)

    from sys.sql_modules

    where definition like '%mytablename%'

    and definition like '%join%'

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

  • RE: SQL Memory Use

    dbcc memorystatus

    partially documented online

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

  • RE: SQL Count from two tables

    knikolov4521 (1/4/2015)


    Hello, can someone help me with this:

    I have two tables. I have three columns DEPARTMENT_NAME, LAST_NAME, JOB_ID.

    DEPARTMENT_NAME is from table 1. JOB_ID and LAST_NAME are from table 2....

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

  • RE: insert data into two tables

    2 queries and 2 passes is the best way to do this I think. You could try the Import Wizard in SSMS as a starting point.

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

  • RE: Tempdb sql2005 vs sql2012

    What, exactly, are you doing with SQL 2012?? Any configurations or usages that you did not do/have on 2005?

    Have you run any DMV queries to determine what...

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

  • RE: IDENTITY(1,1) doesn't work, from 17 jumped to 1001

    brewmanz (12/22/2014)


    Dan Guzman - Not the MVP (12/19/2014)


    Gaps I don't mind, but really 1000 or 10,000 at a time? It's too much. I guess if you only reboot...

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

  • RE: DEADLOCK : System tables

    I can't take sufficient time to wade through all of that output, but it seems that you are hitting system tables with activity (read and possibly write with a create...

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

  • RE: IDENTITY(1,1) doesn't work, from 17 jumped to 1001

    Yes, it is in SQL Server 2014. And it IS by design, and for a good reason. The logging of each individual identity created is a SIGNIFICANT performance...

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

  • RE: Incorporate several queries in 1

    I have used this sproc for nearly 15 years to generate insert statements for a table of data:

    http://vyaskn.tripod.com/code/generate_inserts.txt

    We don't want to deal with that much data though. Create sample...

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

  • RE: Incorporate several queries in 1

    Dwain, I think the objective is TOP N Per Group. But I am waiting back on definitive confirmation of that from the OP.

    Serg, the BETWEEN doesn't seem appropriate because...

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

  • RE: Incorporate several queries in 1

    I will repeat my request for sample data, and it needs to be in the form of a table with rows inserted into it. Give me that and I...

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

Viewing 15 posts - 1,726 through 1,740 (of 5,841 total)