Viewing 15 posts - 61 through 75 (of 757 total)
Thanks
It works!
Can you give me a run-down of what is actually happening with this code?
Thanks
March 20, 2014 at 5:44 am
Thanks
I tried it but it still asks for a value for the FromPath parameter
March 20, 2014 at 2:05 am
Play around with this.
create trigger insert_trigger on trig
after insert as
if (select count (*) from inserted) > 1000000
begin
print 'some_message_here'
rollback
end
March 4, 2014 at 6:06 am
Not 100% sure about 2005 but I know that for 2008 you apply the update to the passive node, failover and then apply the update to the "new" passive node.
February 6, 2014 at 12:30 am
GilaMonster (2/3/2014)
SQLSACT (2/3/2014)
I understand that SQL Server's plan cache is memory taken from outside of the buffer pool (Memory allocated by the Max Memory setting in SQL).
No, the plan cache...
February 3, 2014 at 1:08 am
Locate SQL's ERRORLOG text file, you'll be able to get the location from the service.
Have a look through it, there should be a more descriptive message in the log.
December 20, 2013 at 6:00 am
I've had this happen but after a few seconds, it would connect or after a ipconfig/flushdns
Check the registry entries for you App for any reference to the server name instead...
December 18, 2013 at 2:44 am
I don't claim to be the expert on this topic so I will leave it at that. I do stand by what I am saying though, I could be wrong.
Hopefully...
December 18, 2013 at 12:07 am
Again.....
"When an FCI is joined to an availability group, the nodes within the FCI can fail over to each other automatically, but the availability replica on the FCI must manually...
December 17, 2013 at 11:49 pm
So, in the second query, all you're doing is using the schema_name.table_name?
What do the execution plans say?
December 17, 2013 at 4:48 am
Something like this:
SELECT QUOTENAME (OBJECT_NAME(i.id)), QUOTENAME (i.name),STATS_DATE(i.id, indid),rowmodctr,so.schema_id,SCHEMA_NAME (so.schema_id) Schemaname
FROM sys.sysindexes i
inner join sys.objects so on i.id = so.object_id
WHERE STATS_DATE(id, indid)<=DATEADD(DAY,-1,GETDATE())
AND rowmodctr>0
AND id IN (SELECT object_id FROM...
December 17, 2013 at 2:44 am
Did you log off from your remote desktop session?
Check the progress of the restore and whether or not it's moving with:
select command, percent_complete from sys.dm_exec_requests where command like '%RESTORE%'
.
If...
December 17, 2013 at 2:29 am
Ford Fairlane (12/17/2013)
SQLSACT (12/17/2013)
Ford Fairlane (12/17/2013)
SQLSACT (12/16/2013)
Ford Fairlane (12/16/2013)
SQLSACT (12/12/2013)
We are looking at implementing AlwaysOn AG combined with a Failover Clustered Instance of SQL Server. This is the setup:
>>...
December 17, 2013 at 12:41 am
Viewing 15 posts - 61 through 75 (of 757 total)