Viewing 15 posts - 48,601 through 48,615 (of 49,571 total)
You might be able to use ROW_NUMBER().
In your subquery, include another field ROW_NUMBER() OVER (Order BY ....) AS RowNo and give it any of the fields. Then if you can get...
July 5, 2007 at 1:05 am
I used the following book as partial prep for the 70-441 exam (Database solutions design) and I would highly recomend that others do NOT do the same.
The book is...
July 4, 2007 at 2:50 am
July 4, 2007 at 1:06 am
You could schedule it as a OS task in sql agent. Other than that, I don't think there's a way to run an OS command without xp_cmdshell (unless you create...
July 3, 2007 at 1:28 am
Sure. Please post the entire piece of code, especially what's inside the cursor loop and I'll give it a shot.
Without knowing what you're doing with the cursor, it's near impossible...
July 3, 2007 at 12:06 am
What are you trying to do with the cursor? Post the entire code if possible, there's probably a better way.
July 2, 2007 at 1:45 am
I used to code review everything, but I don't have time any longer. The load's spread among a small group who do know well-performing code. However stuff slips through.
On the...
July 2, 2007 at 12:49 am
I've found that our DBA's don't (have to) do much in the area of performance tuning code, only do cursory reviews of code, don't do much when it comes to...
July 2, 2007 at 12:10 am
Agreed
I found the short scenarios worse than the long ones. The time available for each scenario is proportional to the number of questions. In the ones with more questions I...
June 28, 2007 at 3:38 am
OK, let's give this a try...
SELECT
dbo.USERS_LOGIN.UL_CONTACT_SURNAME + ', ' +...
June 28, 2007 at 3:26 am
It's possible, but a little tricky. which of the rows that have the full name of Jim smith would you want returned?
June 28, 2007 at 3:02 am
We're not using NTLM anywhere.
The Kerberos patch is my prime suspect too, but why would a kerberos patch cause SQL Native Access Client to no longer be able to retrieve...
June 28, 2007 at 2:19 am
Update
Rolling back the security patches fixed the problem.
Now, out of four security patches, for the telephone service, remote desktop, plug and play and kerberos, which could have caused this...
June 28, 2007 at 12:01 am
Viewing 15 posts - 48,601 through 48,615 (of 49,571 total)