Viewing 15 posts - 1 through 15 (of 16 total)
My 2 cents on this issue, If you get an mdf, ldf of a read only database and attach it to your server it will retain the read only properties....
February 21, 2014 at 8:01 am
I am getting the same error message, I have an OLE DB source that gets a set of columns from a variable that executes a given stored proc.
The data...
April 8, 2013 at 1:51 pm
Thanks OPCThree, it worked. Something trivial, but important to learn from this.
March 28, 2012 at 7:39 am
yadagiriprasad (4/28/2011)
i used same earlier but it is displaying like below instaed of 6 iam getting one216342117122031
216362117122031
select dataitemid,companyId,estimateperiodid, count(prasad)from #prasad_tbl
group by companyId,dataitemid,estimateperiodid,prasad
here the dataitemids...
April 28, 2011 at 12:55 pm
yes, ORDER BY Clause will ensure a sorted list.
April 28, 2011 at 12:40 pm
use group by clause.
http://msdn.microsoft.com/en-us/library/ms177673(v=SQL.90).aspx
select Compnayid,Count( vid) from tablename
group by companyID
April 28, 2011 at 12:35 pm
My 2cents,
Enable Full text search functionality, Create a Full Text Index, which will organize your data according to your liking Asc or Desc on your choice of columns. Then...
April 28, 2011 at 12:16 pm
My 2 Cents,
Before you defragment (rebuild or reorganize) those indexes make sure to look at the number of pages. Rebuilding a small index would not give you great performance...
April 28, 2011 at 11:38 am
Interesting article Kendal, I have been using the same dmv as you have mentioned here but with a slight modification and here it is
Select Object_Name(ddps.object_id) TableName
, ddps.row_count #Rows
From sys.dm_db_partition_stats...
February 1, 2011 at 8:15 am
Queries run longer due to various factors, as steve mentioned above , it could be due to update blocking by another process.
To find out what query is causing it, you...
May 25, 2010 at 3:37 pm
Viewing 15 posts - 1 through 15 (of 16 total)