Viewing 15 posts - 12,031 through 12,045 (of 14,953 total)
Locks aren't always just for the rows affected. Often, with updates, inserts, etc., they can spread to pages, extents and even the whole table. Depends on how much...
September 9, 2008 at 12:54 pm
You might be able to do it from a UNC path to a shared directory on the network, but it often bombs out.
Can you clear out some space on the...
September 9, 2008 at 12:52 pm
I have this horrible thought about SQL in spandex stuck in my head now. Yeah, I know, it's not quite what was written, but it sure is what my...
September 9, 2008 at 12:50 pm
That, I can't answer.
My application was an Access project on an SQL database. No Access database, no linked tables, etc. Never had to deal with those.
Hopefully, someone else...
September 9, 2008 at 12:47 pm
I've had problems with that with VPN. Same thing a couple of times with remote desktop connection to my desktop machine. It's an on-again-off-again thing for me in...
September 9, 2008 at 12:46 pm
Are you sure you want clustering? You mentioned that the servers are in a DR site, and that usually means "disaster recovery" (at least to me). That's not...
September 9, 2008 at 12:43 pm
Michael Earl (9/9/2008)
Along with questions, people post DDL and sample data in usable formats in that universe as well.So there are some benefits.
Yeah, but it's already been said that it's...
September 9, 2008 at 12:39 pm
The easiest way is usually to set up a linked server. There's a section in Books Online about how to do that.
September 9, 2008 at 12:38 pm
select *
from #PointTable PT1
inner join #PointTable PT2 -- Second failure
on PT1.PointName = PT2.PointName
and PT2.DateValue between
dateadd(minute, 14, PT1.DateValue)
and
dateadd(minute, 16, PT1.DateValue)
inner join #PointTable PT3 -- Third failure
on PT1.PointName =...
September 9, 2008 at 12:26 pm
Jeff's article on running totals is at: http://www.sqlservercentral.com/articles/Advanced+Querying/61716/
September 9, 2008 at 12:14 pm
You could do:
SELECT Top (1) CASE ENCT_HDR_BATCH_ID
WHEN '837P'THEN 'M'
WHEN '837I'THEN 'M'
...
September 9, 2008 at 12:03 pm
You have two connections looking at the same table. Each generates a Share Read Lock. If they both lock the same row, you'll get two. This is...
September 9, 2008 at 11:54 am
More important than the backups, it sounds like you have the log files on the same array as the data files. Is that correct? If so, you'll want...
September 9, 2008 at 11:51 am
I think I solved that once by changing something on the form/report in Access, but it's been too many years for me to remember what it was. Is there...
September 9, 2008 at 11:49 am
You could run the data through a proc that would split it for you. Would that solve your problem?
September 9, 2008 at 11:44 am
Viewing 15 posts - 12,031 through 12,045 (of 14,953 total)