Viewing 15 posts - 1 through 15 (of 58 total)
Isn’t there some global setting for model database which can configure the auto grow attribute of any new database created to allow for unrestricted access?
Even though the model database itself...
May 27, 2011 at 6:39 am
Nice article. Cleared a lot of grey areas regarding CTE for me.
I have a doubt though, given the uses of a CTE, isint it similar to table variables then? I...
March 11, 2007 at 11:59 pm
Plan Plan Plan Plan Plan!
Don’t get defeated by temporary defeat.
Practice self disciplined and self control.
Take your time to decide but when you decide don’t keep changing your decisions
Attention to...
January 16, 2007 at 11:18 pm
Thanks for posting the functions, I found them very useful. Even the help is done very well.
December 29, 2006 at 3:08 am
"Insert into #sometemptable
select * from sysobjects order by crdate
select * from #sometemptable
The order that the select returns is not defined. It might be by crdate, or it might not."
I'll...
September 21, 2006 at 4:21 am
Well I haven’t been fortunate enough with dealing with XML’s too much, but I believe generally when you use for Auto clause its fairly straight forward. The complexity creeps in...
September 21, 2006 at 3:49 am
Well I got that query in an email, so cant really pin down the real source.
I can imagine though the context in which it was...
September 20, 2006 at 7:06 am
Thanks for the link Greg.
Was aware of the DBCC log function but I am not too pleased with its out put. Rather I am unable to use to output...
August 24, 2006 at 1:28 am
Nice article.
Another way of writing the same, for those who prefer the old convention (I dont recommend it).
SELECT
s.*,
August 23, 2006 at 4:51 am
Pardon my ignorance, but why should only reports use isolation levels?
Is it because the queries for reports are long running queries and dont need to keep switching the isolation levels...
June 18, 2006 at 11:04 pm
Ermmm, the infamous Oracle like sequence table seems to be an integral part of our architecture. It was already in place before I took over, and changing it now will...
June 18, 2006 at 7:42 am
@noggin - Yes, that could be an option for bulk inserts. But in our scnario, the inserts would be done on an OLTP...
June 16, 2006 at 2:40 am
Alrighty. I have tried the code with the different formats which we have on here, and not surprisingly it was worked like silk.
My concern now is, the size of @doc...
June 16, 2006 at 1:22 am
Thanks for responding guys, I am going to try out the solutions which you'll posted and get back here with the results.
June 15, 2006 at 5:08 am
This has been one of the most informative threads I have come across wrt locking.
How bout setting the right Tran Isolation levels / Transation? Should'nt that help in managing the...
June 14, 2006 at 8:41 am
Viewing 15 posts - 1 through 15 (of 58 total)