Viewing 15 posts - 991 through 1,005 (of 5,103 total)
Is this what you are after ?
select LOCGRPNAME AS 'location', COUNT(empid) AS 'num_employees',
SUM(
CASE WHEN [dbo].[ufn_GetAge] ( [DOB], GETDATE() ) >= 60 THEN 1 ELSE 0 END
) AS AGE
from LOCATION...
August 11, 2008 at 10:01 am
Just watch out for orphaned transactions when rolling back from a trigger!! It KILLS the entire "batch".
August 11, 2008 at 9:54 am
You should implament an SQL Trace to determine which are your most frequent deadlocks and SOLVE them.
August 11, 2008 at 9:32 am
litu deb (8/11/2008)
But sp_helparticle @publication = 'publication' , @article = '%'
this query show about all the article,From here how can I identify which article...
August 11, 2008 at 9:27 am
Ah ... that's different.
Yes, you could use mirroring as high availability; an independent distributor server and a separated subscriber for reporting that will stay working even with mirroring failover.
July 25, 2008 at 3:11 pm
systems databases are NOT compatible between editions. backup/restore from/to editions does not work.
July 24, 2008 at 8:39 pm
dogers (7/24/2008)
However I've had...
July 24, 2008 at 7:44 pm
yup republishing has that problem. You should try to avoid it if at all possible.
July 24, 2008 at 7:41 pm
b_boy (7/24/2008)
The recovery model is set to...
July 24, 2008 at 7:28 pm
Not only you won't cause any harm by querying master you can't change system tables directly.
July 24, 2008 at 7:26 pm
keymoo (7/22/2008)
I set up the transactional publication using stored procedures like this (I declared some variables higher in the script - this is a snippet):
--...
July 23, 2008 at 12:17 pm
After Switching recovery model you *must* take Tlog Backup if you want to recover to any point in time. While the DB was in Bulk_logged you lost point in time...
July 18, 2008 at 3:04 pm
Bulent Gucuk (7/18/2008)
July 18, 2008 at 2:58 pm
Viewing 15 posts - 991 through 1,005 (of 5,103 total)