Viewing 15 posts - 1,471 through 1,485 (of 5,103 total)
The use of EXISTS implies that the column list is not even checked only the WHERE predicate is taken into account.
So with EXISTS: select 1, select 'x' and select *...
October 6, 2007 at 4:05 pm
binu.ma (10/6/2007)
ThanksCan u help me how to do this in SQL 2000
Binu
Those Registry keys apply to SQL Server 2000
October 6, 2007 at 4:01 pm
select *
from yourtable
where len(address) - len( replace(address,' ','')) <= 1
October 5, 2007 at 3:00 pm
I am not really sure I understand your question.
Those stored procedures can not be executed by non sa users. And they imply cycling the error log, setting up log shipping,...
October 5, 2007 at 2:51 pm
Linda,
That message is ususally cause by an OS trim in memory and if the sql server Edition you have is the Standard Edition you are out of luck. There is...
October 5, 2007 at 2:47 pm
binu.ma (10/5/2007)
HiThanks. Can U give some examples
Binu
Examples:
sp_configure -- although you can use serveradmin role I prefer this is only done by sysadmins
sp_cycle_errorlog
sp_procoption
sp_addextendedproc -- although you can use CLR now...
October 5, 2007 at 2:40 pm
DBASkippack (10/5/2007)
thx Noel.. much appreciated. A further description on this is located here:How to: Allow Non-Administrators to Use Replication Monitor (Replication Transact-SQL Programming)
ms-help://MS.SQLCC.v9/MS.SQLSVR.v9.en/repref9/html/a3bdde8f-4f90-401f-b26a-dfe803534de7.htm
Cool.
October 5, 2007 at 2:22 pm
WITH (NOLOCK) Can produce dirty reads and invalid spureous ROWS.
October 5, 2007 at 2:20 pm
Also you Could Try Truncating the log ...Note that this is not recommended but given your situation it may get you out of the problem.
October 5, 2007 at 2:18 pm
sqlquery (10/5/2007)
I have scenario where we have huge tables Transactional replication and now requirement is to re-initialize the subscription , what are the things we need to take care...
October 5, 2007 at 2:15 pm
Noel, you wrote, "You could stop the Log reader before those jobs run and -restart it after those jobs are done." Would you have to do this manually?
Not really that...
October 5, 2007 at 12:45 pm
Jeff Gray (10/3/2007)
The procedure is sp_scriptdynamicupdproc. not ...updateproc.
great catch. Sometimes we don't see the forest for the trees ... 😀
October 5, 2007 at 12:42 pm
John,
Merge gives you "automatic" identity range handling. you do want to replicate the identity values and you will have to either partition the values or use the "automatic" range. In...
October 5, 2007 at 12:39 pm
joachim.verhagen (10/5/2007)
noeld (10/5/2007)
October 5, 2007 at 12:18 pm
Viewing 15 posts - 1,471 through 1,485 (of 5,103 total)