Viewing 15 posts - 46 through 60 (of 1,047 total)
you can query sys.dm_os_performance_counters, looking at user connections and/or logins per second. Based on these values you could send an email.
I sample these and other metrics every 15 minutes and...
August 23, 2013 at 7:03 am
Steve Jones - SSC Editor (8/22/2013)
August 22, 2013 at 1:00 pm
you should first define your CTE as a monthly aggregation (sum(Amount) group by month EMPlyee#)
the your final query is just:
SELECT {emplyee #, Name, etc.}, total=SUM(Amount)
group by {emplyee #, Name,...
August 22, 2013 at 12:46 pm
I might suggest having a small control table for this job.
Set up the job schedule to run @ 9:30 and every 10 mins for as many retry intervals...
August 22, 2013 at 6:52 am
I assume you have tested the ODBC connection manually with the ODBC applet? Make sure that the service account that the instance is running as has permission on the...
August 21, 2013 at 1:16 pm
What I have done in the past is to have the broker request procedure write a request row to a separate table then send the ID of the row into...
August 21, 2013 at 1:07 pm
dwilander (8/15/2013)
Maybe I'm missing something, but doesn't all he needs to do is at the wizard screen 'Select Source Tables and View' select Edit Mappings... and change the datatype there?
Correct....
August 15, 2013 at 11:10 am
If the heap and the clustered index both start out completely empty with no data page allocations the heap inserts will be faster. Beyond that, as Grant stated, there...
August 15, 2013 at 8:16 am
Think about it: there is going to be more overhead inserting into a table with indexes Vs one with no indexes.
August 15, 2013 at 6:46 am
You could set up a SQL Agent job that triggers at a certain time or at even at fixed intervals. Another methodology I have used is just a stored procedure...
August 15, 2013 at 6:37 am
Your question is to too general to give you specific advice. Replication can have so many different topologies, design goals and performance requirements it is not logical to provide recommendations...
August 9, 2013 at 2:15 pm
Minimizing the network throughput for one... the whole query can be run in the engine and potentially be better optimized. Faster query results & better scaling.
August 8, 2013 at 9:01 am
Yes it is possible to create the table ahead of time. If your create the subscription you should be offered the option of not creating the snapshot.
August 8, 2013 at 8:57 am
Yes, you can set up the replication of the new article without doing a snapshot. Create the table first then populate it yourself, or do it later when you have...
August 8, 2013 at 6:33 am
By not working do you mean not updating any rows? If that is the case it would be because none of the rows have Branch='NG26' and logindate='2013-08-07'. If...
August 8, 2013 at 6:27 am
Viewing 15 posts - 46 through 60 (of 1,047 total)