Viewing 15 posts - 1 through 15 (of 23 total)
Thanks Gail Shaw. This was really helpful.
More details on Default Trace:
http://www.mssqltips.com/tip.asp?tip=1111
http://www.sqlservercentral.com/articles/sql+server+2005/64547/
July 13, 2011 at 2:22 am
Ya it rebuild index. When we use the DBCC DBREINDEX 'tablename', it takes some time to rebuild it. And if in the mean time if a user queries the same...
March 15, 2010 at 2:19 am
Mistakenly posted to Integrated Services section as this is no way related to it and didn't find any option delete the same.
Sorry for creating confusion.
Thanks,
Ajit
March 15, 2010 at 2:15 am
Thanks buddy, this is what I am looking for.
gr8.
August 20, 2007 at 10:48 pm
We cannot use GUID.
The existing table has a numeric field which need to be migrated to a distributed enviornment.
suggest??
May 14, 2007 at 4:29 am
First of all thanks to all folks responded to my query...
I have managed to get the output to a some extent...I would like to share the same with you guys....
December 14, 2006 at 4:59 am
Just for R&D....
I Just need the table /View DDL scripts and also sp text...
December 13, 2006 at 5:43 am
You can use Triggers (update triggers) for the same. Refer BOL for detailed syntax.
Cheers!
June 6, 2006 at 12:12 am
select max(sal) from Emp_Salary
where sal not in (select max(sal) from Emp_Salary)
June 6, 2006 at 12:03 am
Thanks all for responding to my query...
gr8 stuff....
May 31, 2006 at 4:46 am
Try This,
Step-1
----------
select
IDENTITY(int,1,1) as IdentityVal,
InvoiceGuid
,CreditNoteID
,InvoiceHeaderID
,InvoiceBatchID
,BillToAccountName
,InvoiceNumber
into #test2
from #test
where invoiceNumber in (select Distinct invoiceNumber from #test)
Select InvoiceGuid
,CreditNoteID
,InvoiceHeaderID
,InvoiceBatchID
,BillToAccountName
,InvoiceNumber from #test2
where IdentityVal...
May 30, 2006 at 6:30 am
Check This Out:-
select month(REQ_DATE_COMPLETE) Req_Month ,year(REQ_DATE_COMPLETE) Req_Year,count(REQNO)
from REQ_DATE
group by month(REQ_DATE_COMPLETE) ,year(REQ_DATE_COMPLETE)
order by year(REQ_DATE_COMPLETE) , month(REQ_DATE_COMPLETE)
This way you will have more control and more options to represent your data in different...
May 26, 2006 at 5:17 am
Hope this help.
Creating An Indexed View:
----------------------------------------------
The CREATE INDEX statement must meet these requirements in addition to the
normal CREATE INDEX requirements:
The user executing the CREATE INDEX statement must be the view...
May 24, 2006 at 6:52 am
I Think you want to update the Description [NewReport] from the Progarm master where a matcing ProgramId is matched.
Update NewReport
set program = p.description
from program p inner join newReport nr on...
May 23, 2006 at 3:12 am
Viewing 15 posts - 1 through 15 (of 23 total)