Viewing 15 posts - 5,671 through 5,685 (of 7,505 total)
Because we always have SQLAgent running, I've just implemented an extra job to check and launch the sox-trace proc.
This job is scheduled to start whenever sqlagent starts.
I've kept the startup...
July 11, 2007 at 1:39 am
Red Gate has a free "SQL Log Rescue" for SQL2000 ! ![]()
![]()
Very nice !
July 11, 2007 at 12:56 am
maybe it's worth to mention that MS has a free migration assistant for Oracle to SQL2005.
I don't know if it supports the Oracle 7.3
July 11, 2007 at 12:51 am
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
Viewing 15 posts - 5,671 through 5,685 (of 7,505 total)