Viewing 15 posts - 16,111 through 16,125 (of 19,564 total)
love sql (3/22/2010)
Could you please tell me anyone that what is the difference between querying data from remote server and linked server.
performance wise as well. What are the things...
March 22, 2010 at 12:36 pm
It should also include the dark mists around it.
There must be some corruption issues out there with lame duck responses from others.
March 22, 2010 at 12:30 pm
Alvin Ramard (3/22/2010)
CirquedeSQLeil (3/22/2010)
Alvin Ramard (3/22/2010)
I'm going to see if I can prepare myself for:...
March 22, 2010 at 12:22 pm
Lynn Pettis (3/22/2010)
CirquedeSQLeil (3/22/2010)
Going on 15 for me. Feels like about 5 - until I try to remember details of those early years. It's hard to remember facts...
March 22, 2010 at 12:19 pm
Alvin Ramard (3/22/2010)
I'm going to see if I can prepare myself for: 70-433 Microsoft SQL...
March 22, 2010 at 12:17 pm
tstaker (3/22/2010)
Anyone have anything funny, interesting or weird to talk about today? I'm bored.
Scenario: Backup prod and restore to a "reporting server." Usage on the reporting server...
March 22, 2010 at 12:14 pm
Luke L (3/22/2010)
Gianluca Sartori (3/22/2010)
tstaker (3/22/2010)
Anyone have anything funny, interesting or weird to talk about today? I'm bored.
A consulting company here installed a SQL clustered Server with two nodes...
March 22, 2010 at 12:08 pm
Alvin Ramard (3/22/2010)
Lynn Pettis (3/22/2010)
GSquared (3/22/2010)
tstaker (3/22/2010)
Anyone have anything funny, interesting or weird to talk about today? I'm bored.
My main subjects of conversation so far today have been politics...
March 22, 2010 at 12:07 pm
Gianluca Sartori (3/22/2010)
tstaker (3/22/2010)
Anyone have anything funny, interesting or weird to talk about today? I'm bored.
A consulting company here installed a SQL clustered Server with two nodes and they...
March 22, 2010 at 12:06 pm
Gianluca Sartori (3/22/2010)
tstaker (3/22/2010)
Anyone have anything funny, interesting or weird to talk about today? I'm bored.
A consulting company here installed a SQL clustered Server with two nodes and they...
March 22, 2010 at 12:05 pm
Your monitoring job would run a script to check the job tables in the msdb database.
(sysjobhistory check the run_status column)
March 22, 2010 at 11:28 am
Try the following:
with increment as (
SELECT A.AB_Id, A.Priority, A.Analysis_Code
,row_number() over (order by a.ab_id) as Test_Sequence
FROM dbo.LSR_Prepare A
LEFT OUTER JOIN dbo.LSR_Pass B
ON A.AB_Id = B.AB_Id
AND A.Priority = B.Priority...
March 22, 2010 at 11:26 am
Yes you could do that. One method is to create another job that fires off every so often. The job will check the status of each of the...
March 22, 2010 at 11:14 am
Viewing 15 posts - 16,111 through 16,125 (of 19,564 total)