Viewing 15 posts - 121 through 135 (of 201 total)
yep - both nodes are active
July 9, 2012 at 8:06 am
take a look at Robert Davis' blog post: http://www.sqlsoldier.com/wp/sqlserver/troubleshooting-atabasemirroringerror1418
June 21, 2012 at 8:17 am
for some reason it didn't like me starting it in single user mode via DOS. Starting it in single user mode via SSCM worked. Once connected via DAC...
June 20, 2012 at 8:29 am
Hi,
Yes - I've tried dropping the trigger.
Querying sys.dm_tran_locks brings back quite a few X and Sch-S locks for my trigger. I've tried killing the SPIDs, though twice as many...
June 20, 2012 at 8:19 am
CREATE PROC myproc
@param INT
as
begin
select @param, MAX(ID) from tab1 WHERE ID < @param
union
select ID, oldid from tab1 where ID < @param
end
June 19, 2012 at 6:42 am
IF EXISTS(
SELECT 'mydomain\' + sAMAccountName
FROM OPENQUERY
(ENTMASTER1,'SELECT cn, displayName, sAMAccountName
FROM ''LDAP://mydomaincontroller''
...
June 13, 2012 at 5:24 am
Koen Verbeeck (6/13/2012)
ako58 (6/13/2012)
June 13, 2012 at 2:53 am
Gail - have you got a second SSC account called "Lowell"? 😉
May 30, 2012 at 6:31 am
Hi Guys,
I've used some of the valuable information posted for a new project I'm working on.
Just thought I'd share some lessons learned:
1) I've coerced management into SQL Server 2008 because...
May 24, 2012 at 6:57 am
Schadenfreude-Mei (5/21/2012)
Schadenfreude-Mei (5/21/2012)
LCARS - have you been watching star trek?
Yes infact 820-Gigaquads is the p/s access speed of the main computer core in 1701-D. LCARS (Library Computer Access/Retrieval System) is...
May 21, 2012 at 9:08 am
personally, I disklike them, but synonyms... http://msdn.microsoft.com/en-us/library/ms177544.aspx
May 21, 2012 at 8:30 am
k.subramanyam1017 (5/21/2012)
could u please any one tell me the these questions
1) what is your company file architecture and how much data u r handle.
2) how...
May 21, 2012 at 8:12 am
Hi,
Thanks for the reply
I have 2 servers; "ServerA" and "ServerB".
There is a linked server called "Link1" from ServerA to ServerB.
There is a linked server called "Link2"...
May 1, 2012 at 4:43 am
do you get any errors?
You're better off pre-allocating the space required for the data and log files. Growing data files/log files is a resource expensive operation, so you want...
April 26, 2012 at 5:18 am
Hi,
Thanks for the response.
I found your solution works, howerver, it's not quite how I'm trying to use it. In my procedure, if the stored procedure I run remotely fails,...
April 20, 2012 at 8:20 am
Viewing 15 posts - 121 through 135 (of 201 total)