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 *...
* Noel
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
* Noel
October 6, 2007 at 4:01 pm
select *
from yourtable
where len(address) - len( replace(address,' ','')) <= 1
* Noel
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,...
* Noel
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...
* Noel
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...
* Noel
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.
* Noel
October 5, 2007 at 2:22 pm
WITH (NOLOCK) Can produce dirty reads and invalid spureous ROWS.
* Noel
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.
* Noel
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...
* Noel
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...
* Noel
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 ... 😀
* Noel
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...
* Noel
October 5, 2007 at 12:39 pm
joachim.verhagen (10/5/2007)
noeld (10/5/2007)
* Noel
October 5, 2007 at 12:18 pm
sysadmin is necessary for SERVER wide settings changes.
* Noel
October 5, 2007 at 11:51 am
Viewing 15 posts - 1,471 through 1,485 (of 5,103 total)