Viewing 15 posts - 121 through 135 (of 362 total)
[font="Verdana"]
tinku.reddy (10/20/2008)
I created a primary key on a table.
There is clustered index created by default .
BUT ....
I want to create an index on some other...
October 24, 2008 at 4:52 am
[font="Verdana"]
Refer below URL:
http://www.sqlservercentral.com/Forums/Topic590618-145-1.aspx
Mahesh
[/font]
October 24, 2008 at 4:45 am
[font="Verdana"]
tinku.reddy (10/23/2008)
i was trying to update using while loop
Here is my code ....
declare @y char(3)
declare @count int
set @y = 'no'
set @count = 1
select...
October 24, 2008 at 1:11 am
[font="Verdana"]John, Stored Procedure would have been best option then. You could pass just parameters from front end(shown by rbarryyoung)
--Mahesh[/font]
October 24, 2008 at 12:48 am
[font="Verdana"]Its not possible to set collation at run time. Mention the exact collation.[/font]
October 9, 2008 at 8:09 am
[font="Verdana"]Turn on SQL Profiler then.
Mahesh[/font]
July 18, 2008 at 5:48 am
[font="Verdana"]
mailsar (7/16/2008)
I am using, If update(column name) as it is one of the best way to find out whther the column is being updated....
July 16, 2008 at 8:37 am
[font="Verdana"]Will you explain what exactly you wants to do? What do you mean Avg on Row instead of Col? Altimately the values are going to be resides in cell.
Mahesh[/font]
July 16, 2008 at 7:30 am
[font="Verdana"]
This wake me up to find the solution why I was not successful when I assigned server name directly to Data Source parameter in connection string.
This means your server has...
July 16, 2008 at 7:17 am
[font="Verdana"]
Abhijit (7/16/2008)
July 16, 2008 at 6:34 am
[font="Verdana"]http://www.sqlservercentral.com/Forums/Topic529741-149-1.aspx[/font]
July 8, 2008 at 8:23 am
[font="Verdana"]Too much indexing harm on Insert / Update / Delete statments on that table. Because the whole data needs to be rearranged again in case of these statements.
Mahesh[/font]
July 8, 2008 at 7:54 am
[font="Verdana"]SQL 2005 has PIVOT and UNPIVOT operators. For more information refer below file.
Mahesh[/font]
July 8, 2008 at 7:45 am
[font="Verdana"]You need self join in this case. Like:
Select E.EmployeeId, E.Name, E.ReportTo, M.Name From Employee As E Inner Join Employee As M On E.ReportTo = M.EmployeeId.
Also you can add the columns...
June 27, 2008 at 4:57 am
Viewing 15 posts - 121 through 135 (of 362 total)