Viewing 15 posts - 5,671 through 5,685 (of 7,502 total)
As stated in Greg's blog, many times we just overlook the fact that most of the time, a CIX is not choosen for a special reason, but just to have...
July 10, 2007 at 5:42 am
Just to add .. MS has released a nice article "Comparing Tables Organized with Clustered Indexes versus Heaps" in the sql2005 best practises.
you can find it at http://www.microsoft.com/technet/prodtechnol/sql/bestpractice/clusivsh.mspx
July 10, 2007 at 12:11 am
...I don't find CLR functions difficult but I do worry about the appropriateness of their use in the SQL layer....
Indeed, this is the biggest concern
July 2, 2007 at 11:57 pm
Thanks for the reply.
Their biggest issue was it not being available using the connection wizard.
The workaround is creating a connection and selecting the .Net connectiontype for odbc.
So also the...
July 2, 2007 at 8:12 am
you could use profiler to see what is causing your db to startup again...
June 27, 2007 at 11:42 pm
I'd prefer the positive way.
So I'd prefer "Is the sun shining" above "Is the sun not shining" ![]()
Also keep in mind queries may deliver...
June 27, 2007 at 6:31 am
have a look at http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=8&messageid=372987#bm373380
With sql2005 you have the advantage of using varchar(max) for concatenating this kind of text-columns.
June 20, 2007 at 12:12 pm
declare @countsql nvarchar(max)
set @countsql = N'select count(*) from ' + @TableName '
...
June 19, 2007 at 2:06 pm
I would say it's a proc execution followed by two selects showing the outputparameters in two resultsets of one row with one column and that column is named joehack
June 18, 2007 at 1:40 pm
use an inner join
e.g.
select @ORDDOCID = '00001'
insert into B(ORDDOCID,
June 18, 2007 at 1:36 pm
You've heard some thoughts regarding performance gains.
Did you consider backup performance as well ?
Maybe not that much of a gain with sql2000, but with SQL2005 you'll also be able to...
June 15, 2007 at 1:48 pm
Just my 2ct
- you have to followup size and actual usage anyway.
- if you set maxsize, you have controle and can build a "critical disk reserve" so when the db...
June 15, 2007 at 1:37 pm
Can someone please explain why there is no base row for : ![]()
![]()
June 15, 2007 at 3:12 am
Viewing 15 posts - 5,671 through 5,685 (of 7,502 total)