Viewing 15 posts - 3,151 through 3,165 (of 7,503 total)
Also state which columns you want to select.
- Only from table1 or from both tables ?
- How can you differentiate both result sets ?
I have a slight impression...
February 17, 2010 at 1:55 pm
As Elliott W stated, it will not start a second instance of the job.
It will register a message in sqlagent.out that the job was already running. 😎
February 17, 2010 at 1:41 pm
Keep in mind there is more to service broker than meets the eye !
First read a bit about it, so you know what it is all about and you...
February 17, 2010 at 2:49 am
:blink: that also goes for the minor changes in the pricing model(s) ...
if you ever succeed to pull out the needed data from your sqlinstance itself .....
:sick:
February 17, 2010 at 2:43 am
-do you experience (dead) locks during your troublesome periodes ?
- have you got deadlock reporting activated in your sqlserver errorlog ?
February 16, 2010 at 2:45 pm
not everyone has sqlagent active and it lives separate from sqlserver as a service.
A startup stored procedure that sends a mail or message may be the solution for that case.
February 16, 2010 at 12:13 am
did you try using a tally table ?
Check out the articles of Jeff Moden or Lynn Pettis
set nocount on;
declare @myTest table
( person varchar(80)
...
February 14, 2010 at 9:38 am
Do you mean SQLserver startup time or actual hardware startup time ?
SQLServer uptime: http://www.sqlservercentral.com/scripts/Administration/63771/
February 13, 2010 at 12:59 pm
Did you notice a Missing index recomendation in your Q1 plan ?
anyway Q2 is the one that causes problems ...
It shouldn't matter .... but did you try this alternative ?
...
February 12, 2010 at 8:09 am
Another improvement I came up with is just because it always uses a fixed column combination to check for existence ..... use a checksum of those columns.
ALTER TABLE dbo.T_DBA_ConnectionTracker
ADDFastTrack_CheckSum...
February 12, 2010 at 3:27 am
Thank you for the feedback.
- Any particular techniques used in the "Attach-but-dump" database ?
- What's the db-level of that db ?
February 11, 2010 at 3:21 am
You need to figure out what is actually involved and causing the deadlock.
How To ?
This will enable deadlock info printing in your sqlserver errorlog file.
dbcc traceon(1204, 1205, 3605, -1)
This...
February 11, 2010 at 12:42 am
Yes you can:
- You can set your SSMS query properties to use ANSI implicit_transactions.
( Tools / Options / Query execution / SQLServer / ANSI )
OR
- you...
February 11, 2010 at 12:38 am
Viewing 15 posts - 3,151 through 3,165 (of 7,503 total)