Viewing 15 posts - 16 through 30 (of 45 total)
I have been taught not to use GOTO until and unless its extremely necessary. I am working on a project having 2400+ stored procedures and only 2 of them uses...
August 1, 2003 at 2:24 am
can u check adding selects one by one i.e. first just run the 'MenuItem' select then add 'MenuItemVersion' in the @command variable this might help to get at which point...
July 31, 2003 at 7:31 am
July 3, 2003 at 3:28 am
Good question!
Well IMHO a good developer is a good visualizer and tansformer i.e. visualizes the problem its pros and cons its limitation and then transform it to any language he...
June 13, 2003 at 4:53 am
Is ur where clause sargable? I mean it uses indexed columns or uses non-indexed columns and is it using any function in where clause?
U may gain some efficiency using indexes.
U...
May 26, 2003 at 6:29 am
SQL Server generates a 128 byte unique name for each temporary table. The last 12 charaters i.e. 000000102330 is the Current Session ID generated by SQL Server. So every temporary...
May 26, 2003 at 3:47 am
Thanx all for ur replies.
We will hopefully be starting evaluting SQLExpert and SQLBuilder this week.
Regards.
May 26, 2003 at 3:11 am
Yes. I am looking a tool that can review T-SQL code based on the given criteria or atleast can check some common performance problem, excessive joins and excessive use of...
May 22, 2003 at 11:12 pm
Statistical Indexes.
To start with u can search the following in SQl Server Books Online
statistical information, indexes
and Inside Microsoft SQL Server 2000 by Kalen Delaney
HTH
Regards.
May 22, 2003 at 9:16 am
Thats the best I can do.
SELECT REPLACE(CONVERT(varchar(12), CAST('2003-04-09 00:00:00.000' AS DATETIME), 6),' ', '-')
(and it will be 09-Apr-03 not 08-Apr-03)
Hope this helps.
Regards.
May 22, 2003 at 8:28 am
'auto increment column'
U can select an IDENTITY type column and all the other fields from the required table into a temporary table and the select from that temporary table like:
USE...
May 22, 2003 at 1:14 am
Thanx to all of u. I am just compiling a small report based on this discussion. This helped me a a lot.
And yes Andy, as soon as I completed my...
May 6, 2003 at 11:38 pm
Thanx to all of the responses.
Now can anyone please comments on the scalability of SPs and Dynamic queies i.e. if there are 200+ users accessing the system what should be...
April 29, 2003 at 1:52 am
Very good article.
I was needing one to show it to my team lead, manager, etc. We are currently in phase of converting SPs (2400+) to dynamic queries (not all but...
April 24, 2003 at 4:00 am
Few month back one of our team member reported this error to me. But he was just stress testing the identity columns which are used in the database. Not in...
October 16, 2002 at 12:28 am
Viewing 15 posts - 16 through 30 (of 45 total)