Viewing 15 posts - 5,896 through 5,910 (of 6,486 total)
Janet - unless you change to simple recovery - your TLOG is going to grow no matter how small or large the transaction. It's going to keep growing until...
October 30, 2007 at 12:25 pm
select t.id,t.code,t.pri
from table1 t left outer join
table1 u on t.id=u.id and t.pri=u.pri+1
where u.id is null and t.id>1
Should return all of the rows with a gap in priority BEFORE it.
October 30, 2007 at 12:19 pm
That's an insane number. An hour to create a non clustered index? I'd have to say that there IS something wrong. Sounds like resource starvation of some...
October 30, 2007 at 10:17 am
The concept's the right one - but it sounds like you might not be pushing it "far enough". Meaning - you need to track what's inserted/updated, and what's deleted.
Inserted/updated...
October 30, 2007 at 9:54 am
Murray - there's an IDENTITY field setting available to use for just this purpose. If you set this up - you don't need any special code to increment the...
October 30, 2007 at 9:43 am
Do you have a good read on what step of the process IS taking most of the time and/or has been increasing? What's happening at that moment.
Since it's running...
October 30, 2007 at 9:04 am
You're using Access SQL to do this... use the NZ syntax instead
i.e.
SELECT
nz(LastDate,date()) AS Expr1,
tblSicknessEpisode.SickEpisodeID, tblSicknessEpisode.PersonnelNumber
FROM tblSicknessEpisode LEFT JOIN tblSMSStaff ON tblSicknessEpisode.PersonnelNumber = tblSMSStaff.[Personal Number]
GROUP BY tblSicknessEpisode.SickEpisodeID, tblSicknessEpisode.PersonnelNumber;
October 30, 2007 at 8:52 am
Careful there....
In Access' version of SQL - ISNULL takes only one parameter and tests the value to see if it IS null...
The Access equivalent of SQL's ISNULL function is NZ.
October 30, 2007 at 8:36 am
Well - given the lack of detail you're giving, I suppose the answer to your question is...
"Yes"
Be more specific - it will be easier to be more helpful that way....
October 30, 2007 at 8:33 am
hehe...If we threw every cranky person off of here....This would be one quiet place........:w00t:
October 30, 2007 at 8:29 am
what error do you get? if no error - what happens?
October 30, 2007 at 8:26 am
A few questions:
- Assuming you're using the DTS GUI to set these up - what do you have in the transfer task as far as Fetch size? Do...
October 30, 2007 at 8:20 am
Since you're in Access - it might depend on where you are.
Access' syntax on that would be...
...nz(mydatefield,date())....
SQL Server's syntax on that would be...
...isnull(mydatefield,getdate())......
October 30, 2007 at 7:41 am
Foreign key errors mean that you are trying to insert children into a "parent-child" set of tables.
For example - if you had InvoiceMain and and InvoiceDetail tables (the invoice detail...
October 30, 2007 at 7:36 am
Have you checked that that server's language property is set to British English? (SSMS, server properties, advanced?)
October 29, 2007 at 12:24 pm
Viewing 15 posts - 5,896 through 5,910 (of 6,486 total)