Viewing 15 posts - 226 through 240 (of 412 total)
Yes, if you need information to flow both ways and you are using SQL Server 2005, I'll agree with most of the other people here and say merge replication is...
September 4, 2008 at 7:28 pm
eyejay (9/4/2008)
September 4, 2008 at 7:24 pm
I think something like this will work for you:
select
pat_nr,
abpm,
date_time
from
a_mon a
where
date_time >= (select date_time from a_ereig e1 where er_m_nr = 100 and a.pat_nr = e1.pat_nr)
AND...
September 4, 2008 at 10:41 am
This was one of the best questions with the best explanation I have seen out there.
IT does seem slightly dated now that 2008 is out though. In 2008 it...
September 4, 2008 at 10:09 am
Rod at work (9/2/2008)
September 2, 2008 at 9:02 am
sql_er (8/25/2008)
I was able to fix the problem without adding an index, but just re-writing the query.
It was strange how a very simple change in the...
September 2, 2008 at 8:55 am
Awesome article that covers some of the lesser considered aspects of temporary tables and table variables. Thank you.
September 1, 2008 at 11:32 am
keppro (8/30/2008)
One problem with the script: it doesn't recognize indexes with included fields. Does anybody know what system table(s) contain this information? Better yet, is...
August 31, 2008 at 9:47 am
This article was really well written for what was there, but I was disappointed that it did not get into at least a little bit more depth on things like...
August 28, 2008 at 6:32 pm
Normally SQL will do nothing if you attempt to kill a process that is being rolled back. It will simply display a message that it is already being rolled...
August 28, 2008 at 9:57 am
Michael Kipp (8/28/2008)
Please don't confuse "database files" with "data files".A database is more than just a data file.
A database is more than just a data file, but it is not...
August 28, 2008 at 9:55 am
I'm inclined to agree with Ben. It does depend on how you define the terms, but I generally do not think of ldf as a database file.
It...
August 28, 2008 at 1:31 am
I couldn't agree with you more. Cheating is always disgusting.
August 24, 2008 at 5:01 pm
mlarson (8/22/2008)
August 23, 2008 at 12:23 pm
I know there are many who disagree with me, but for me it helps to have a goal to focus on. That goal will give you something to focus...
August 22, 2008 at 5:40 pm
Viewing 15 posts - 226 through 240 (of 412 total)