Viewing 15 posts - 211 through 225 (of 447 total)
Great article and easy to read. Done it in 2005 last year but had not seen a significant increase in performance.
April 29, 2009 at 8:29 am
Just tried but failed. Throws some invalid error - rsReportParameterProcessingError. Don't know what the heck is that.
'm not a .Net developer.
April 23, 2009 at 9:43 am
Company IT dept. took the stance that they will go for SQL Server 2008 only in Mid 2010 after Microsoft releases SP2 and then add 6 months to it.
April 23, 2009 at 9:07 am
We had licenses for both 32 bit and 64 bit. But, my manager wants to implement a policy of going for 64 bit only for all new SQL Server...
April 23, 2009 at 9:00 am
I would leave it open. Don't know complications with .Net application but going by standards of SQL Server, Auto-Close is treated as a bad performance option on an OLTP...
April 22, 2009 at 1:27 pm
John,
With " order by 2 desc " are you not forcing the query to get result in the way you had desired?
select NULL,'manoj'
union select Null,'1'
union select NULL,'manoj'
order by 2 desc
April 22, 2009 at 12:19 pm
SmartDBA (4/22/2009)
Here is the link for an excellent article on myTechMantra.com which mentions all the SQL server 2008 and 2005 builds along with the list of respective KB.
The link provided...
April 22, 2009 at 11:04 am
Thanks Mark. Though not same but I am about to write a similar script for one report and just saw your query.
April 22, 2009 at 9:27 am
select NULL,'manoj'union select Null,'1'union select NULL,'manoj'
order by 2
or
select NULL,'manoj'union select Null,'1'union select NULL,'manoj'
order by 1
gives you same result.
NULL1
NULLmanoj
I tried on all sql server versions and result is same. May...
April 22, 2009 at 7:49 am
Jason Shadonix (4/17/2009)
ChacMoll (4/17/2009)
I disagree with the answer, that the return value exceeds the limit of an integer, a variable of type integer is not able to save millions
The answer...
April 20, 2009 at 9:11 am
Pei Zhu (4/20/2009)
Not sure what did you mean "what edition of database should you have".Databases do not have edition. sql server may have edition.
You are right. Databases could have...
April 20, 2009 at 9:02 am
Intentions might be good of this writer but advice is horrible. Backup log WITH TRUNCATE_ONLY.:w00t:
Dude, are you serious enough to execute it on production ! ! !
April 17, 2009 at 11:32 am
Interesting article. Would be waiting for second installment. Cursors are bad ( period ) but in some situations we had to use them. It becomes necessary.
The...
April 14, 2009 at 9:45 am
Viewing 15 posts - 211 through 225 (of 447 total)