Viewing 15 posts - 256 through 270 (of 321 total)
Columns per base table 1,024
Bytes per short string column 8,000
Bytes per row8 8,060
January 21, 2008 at 11:29 pm
Take out list of tables and check for fragmentation.
If the fragmentation is low go for dbcc index defrag.
It will definately increase performance.
You can use profile same way u are using...
January 21, 2008 at 9:47 pm
You Can use Case which equal to Decode of Oracle
January 17, 2008 at 12:57 am
Is there any data in the table?
If there is any data check for there is any non-numeric value existing the table
January 15, 2008 at 12:29 am
Create a maintance plan and put it as job Schedule
January 9, 2008 at 4:14 am
What is datatype you have created?
Check the following example where in i am getting correct insert
Create table #1(d1 datetime DEFAULT getdate() )
insert into #1 values('')
insert into #1 values('2008-01-09')
select *...
January 9, 2008 at 3:49 am
SELECT
*
FROM
sys.sysdatabases where version is null
January 8, 2008 at 9:29 pm
Check the following link may help u
http://sqlforums.windowsitpro.com/web/forum/messageview.aspx?catid=70&threadid=45658&enterthread=y
January 7, 2008 at 12:15 am
http://www.microsoft.com/sql/prodinf...alability.mspx
http://www.microsoft.com/technet/pro...y/harag03.mspx
http://www.microsoft.com/technet/pro.../spltmirr.mspx
http://www.microsoft.com/technet/pro...sqlwriter.mspx
January 2, 2008 at 1:07 am
Check the following link.
http://www.databasejournal.com/features/mssql/article.php/3339681
December 31, 2007 at 11:40 pm
Statistics determine the selectivity of the indexes. If an indexed column has unique values then the selectivity of that index is more, as opposed to an index with non-unique values....
December 31, 2007 at 1:32 am
Viewing 15 posts - 256 through 270 (of 321 total)