Viewing 15 posts - 1,816 through 1,830 (of 7,429 total)
Simple you can do a subquery for the maxdate and student and join this to the table itself for the rest. This assumes however the test can only be taken...
June 7, 2004 at 4:38 pm
Look at
information_schema.columns
and
information_schema.tables
also what is your goal as it might work better with SQL-DMO?
June 7, 2004 at 4:33 pm
If you are using SQL 2000 then you could easily do
select * from
a
inner join
b
on
a.col1 = b.col1
where
CHECKSUM(a.*) != CHECKSUM(b.*)
The checksum function is like a CRC value which if they are equal...
June 7, 2004 at 4:30 pm
Ok so after you restart the app server? Is that what you said (in case I misread).
If so then you have to close your connections between each use for best...
June 7, 2004 at 4:02 pm
FYI... Hotfix 878 will correct the issue.
http://support.microsoft.com/?kbid=838166
It is definently happens between 818 and 859 that cuase it for me as the only server with 859 left on it is...
June 7, 2004 at 3:44 pm
Now when you look at these spids which server are you talking about, the one the UDF references or the local. If the remote then I am still looking as...
June 7, 2004 at 3:35 pm
I fortunately have dealt only with eastern time zone so I have an SP to do the conversion (SQL 7 however I retired that code) or a com object. Personally...
June 7, 2004 at 2:40 pm
First if you are near the max length on most of your fields you could actually loose space because varchar incurrs and extra 2 bytes to manage the offset for...
June 7, 2004 at 1:43 pm
Don't look at how long open look at last bacth and see if that is days or not. If not then it is because the connection is being reused enough...
June 7, 2004 at 1:24 pm
Task scheduler is like any other service it runs either under LocalSytem or a defined user. If you need a specific user rights on the SQL Server you need to...
June 7, 2004 at 12:26 pm
Can you post how you are performing in the SP and are you on the server when manually running the DTS and are you using the same login account to...
June 7, 2004 at 12:23 pm
Usually I see this when I have a table that has two rows with the exact same data in every column that was defined with no uniqueness in any column....
June 7, 2004 at 12:14 pm
Constraint does duplication the check before insert, unique index does as insert is occurring. This means in the first there are two actions on the index, seeks if dupe found errors,...
June 7, 2004 at 5:58 am
I agree and I believe I was Little strong in my statement as was a bad day with another developer when I wrote. 99.9% are always happy to fix and...
June 7, 2004 at 5:51 am
Fortunately our building does have a backup generator so heat has been a minimal issue in our personal server room. But we have found keeping the lights off (we have...
June 7, 2004 at 5:47 am
Viewing 15 posts - 1,816 through 1,830 (of 7,429 total)