Viewing 15 posts - 1,726 through 1,740 (of 5,841 total)
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...
January 7, 2015 at 12:19 pm
Right here on SSC!!
http://www.sqlservercentral.com/search/?q=sql+server+build+list
January 7, 2015 at 12:15 pm
Balance (1/7/2015)
January 7, 2015 at 9:30 am
What are you really trying to do here, and more importantly why are you trying to do it?
January 7, 2015 at 7:26 am
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%'
January 7, 2015 at 7:12 am
knikolov4521 (1/4/2015)
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....
January 4, 2015 at 10:02 am
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.
January 3, 2015 at 11:06 am
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...
December 31, 2014 at 5:23 pm
brewmanz (12/22/2014)
Dan Guzman - Not the MVP (12/19/2014)
December 22, 2014 at 8:21 pm
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...
December 22, 2014 at 8:46 am
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...
December 20, 2014 at 7:51 am
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...
December 19, 2014 at 9:15 am
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...
December 19, 2014 at 6:45 am
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...
December 18, 2014 at 2:20 pm
Viewing 15 posts - 1,726 through 1,740 (of 5,841 total)