Viewing 15 posts - 781 through 795 (of 1,409 total)
Expand the "Management" and "SQL Server Logs" tree in SSMS. You will see all logs available. The date/time value indicates the moment of the most recent entry in that log.
If...
August 21, 2013 at 3:51 am
I think if you can speed up the update by using the row_number function:
-- display rownr's assigned to each 'block' of similar rows (only for display purpose)
select row_number() over (partition...
August 21, 2013 at 3:26 am
The description is telling you what to do:
Apply SP1 to your Visual Studio 2008 installation.
August 21, 2013 at 2:57 am
Of course: the best way is to design the table/columns in a way that strings and numeric values are not in the same column.
But I guess you just have to...
August 21, 2013 at 2:27 am
N Nara (8/21/2013)
Thanks Hanshi. I probably will go with the local backup option.However, I would like to troubleshoot the problem. Any pointers would really help.
First I would try to determine...
August 21, 2013 at 2:15 am
ananda.murugesan (8/20/2013)
Microsoft Fix that issues http://support.microsoft.com/kb/2543687 by updating latest service pack3 & CU1 of SP3.
According to your original post, you also need to apply both SP3 and CU1 of SP3.
August 21, 2013 at 1:41 am
N Nara (8/21/2013)
August 21, 2013 at 1:36 am
Your database desing could be normalized. In the current design there is a lot of duplication. Consider to design the tables as follow:
Add a ID column to dbo.newtable:
newtable_ID, software_manufacturer,productname, productversion
Add...
August 21, 2013 at 1:02 am
ananda.murugesan (8/21/2013)
...then apply latest Cumulative update package 12 for SQL Server 2008 SP3, is it correct ?
It's not required to apply the -latest CU-. It required to apply the -latest...
August 21, 2013 at 12:53 am
The execution plan would be a good start, but I can imagine that this would be difficult to read with such a large stored proc.
But why don't you want to...
August 21, 2013 at 12:44 am
ananda.murugesan (8/21/2013)
That error was fixed with CU6 of SP3.. SQL SERVER 2008 32 bit
Pl. confirm as below steps for updating SP3 and CU6
1. Install SP3
2. Install CU1, CU2....CU6 ( i...
August 21, 2013 at 12:37 am
According to your stated requirements, record (2, 8) from table [tbl_PersonDetails] should also be in your resultset. The value 8 doesn't fall between 12 and 15.
This code uses an INNER...
August 21, 2013 at 12:25 am
The error message states the destination path can not be reached. This indicates problems on the network or on the SAN level.
There could be too little bandwith or too much...
August 21, 2013 at 12:11 am
You mention the instance is installed on a cluster. In a cluster you need to start the Agent Service by starting the SQL Agent Cluster Resource in Cluster Administration.
August 20, 2013 at 11:56 pm
I don't know if the SP and CU will solve your problem. But it's always a good thing (for both security and stability) to apply the latest SP to your...
August 20, 2013 at 11:50 pm
Viewing 15 posts - 781 through 795 (of 1,409 total)