Viewing 15 posts - 1,141 through 1,155 (of 2,463 total)
wannalearn (12/13/2010)
Thank you. I was trying to delete parent first. It works now.
May be syntactically it works but from business perspective child table should contains any records associated or...
December 13, 2010 at 11:41 pm
e1785 (12/13/2010)
December 13, 2010 at 10:50 pm
dankwart menor (12/13/2010)
Sounds good. Pardon my ignorance - How do I do that?
http://blog.sqlauthority.com/2009/08/03/sql-server-introduction-to-sql-server-2008-profiler-2/
December 13, 2010 at 10:34 pm
daveriya (12/13/2010)
Can anybody provide me the actual real time project example.
for example,in company how many databases r there,how many reports r generated per day,
and how the front end application r...
December 13, 2010 at 10:16 pm
you can use sql profiler trace use "sp:stmtcompleted" event class
December 13, 2010 at 10:11 pm
brindaam (12/13/2010)
I have two queries, say for example
Select distinct 0 parent_id, ROW_NUMBER() OVER(
ORDER BY Column2_Desc ) AS 'ID', Column2_Desc
From table1
Union
Select distinct 0 parent_id, ROW_NUMBER() OVER(
ORDER BY Column2_Desc ) AS 'ID',...
December 13, 2010 at 6:43 am
How did you resolve ? Always post resolution so that other can get the benefits.
December 13, 2010 at 12:49 am
use sp_lock then find the spid associated with concerned DB and kill them ( but first you can check them whats running behind them by DBCC inputbuffer(spid))
December 13, 2010 at 12:22 am
Heavy DML operation/migration ?
December 13, 2010 at 12:09 am
December 13, 2010 at 12:08 am
Richard Ray-222778 (12/8/2010)
If the job executes sp code that performs data operations on tables in a specific database it appears that the job's permissions handle that. Is that correct?
You need...
December 9, 2010 at 12:12 am
steve.treloar (12/7/2010)
Now I'm getting two messages/emails for every data change that meets the criteria. Dunno why. I can live with that for now though.
Post your complete trigger script
December 8, 2010 at 6:40 am
declare @t table ( ID int , TERM varchar(20), CLASS nvarchar(20))
insert into @t
select 304 ,20103, 'EE2'
union select 156 ,20104, 'CS3'
union select 167,20144,'MC1'
union select 167 ,20144,'SE3'
select distinct final.id,final.TERM,substring(final.results,2,len(final.results))
from...
December 8, 2010 at 6:35 am
edwina derrick (12/2/2010)
I want to take a backup of msdb on server A and restore it to server B. Has anyone done this in SQL Server 2008
You can simply restore...
December 8, 2010 at 6:22 am
create a user with databaseRole :SQLAgentOperatorRole
December 8, 2010 at 5:49 am
Viewing 15 posts - 1,141 through 1,155 (of 2,463 total)