Viewing 15 posts - 1,276 through 1,290 (of 2,044 total)
The DTC authentication thing is new from windows 2003/XP SP2. So no authentication is required if you have to support windows 2000,NT4...
February 8, 2007 at 3:58 am
I can't figure out an easy way. With enterprise library of .NET you can relaunch technical exceptions with user-friendly error messages.
February 8, 2007 at 3:46 am
Darn copy paste errors.
Try
Select EmplNO, Max(CTdate) As MaxDate, QuizName
From tblPreviousWinTrainingLog b
WHERE (@fromdate is null or CTDate > @fromdate )
AND ( @todate is null or CTDate <@todate)
AND (@quiz is null or b.QuizName...
February 8, 2007 at 1:09 am
First thing to check if there is anything mentioned in the event-log of windows regarding sql server. This can give a better indication of what the error is (perhaps database ......
February 7, 2007 at 1:44 am
Plans are dependant on hardware,software version,statistics,...
Can you isolate the bad performing query (with sql profiler, ... ) and compare the execution plan?
February 6, 2007 at 1:32 pm
rewrite the first part in . The begin is left out and
fixed the condition @quiz is null in the having clause
Set @quiz = NullIf(@quiz, '')
Set @Unit = NullIf(@Unit, '')
...
February 6, 2007 at 1:24 pm
Hello,
Can you test if the server is running? (ping...)
What kind of technology you use to connect to sql server (ado,ado.net,oledb,odbc,...) ?
February 6, 2007 at 1:11 pm
the first query looks like
find the last date that the quizzer (empno) took
insert into #tempPreviousWinTrainingLog (EmplNO,QuizName, CTDate)
select a.EmplNO,a.quizname,MAX(CTDate) as last_date
from tblPreviousWinTrainingLog a
where a.QuizName ='Back Injury Competancy'
group by ...
February 6, 2007 at 12:17 pm
Can you view the mdb file with Access to list its contents? I hope you have a backup.
February 6, 2007 at 3:29 am
Hello,
You could build a tiny table with the translations to join with. Since the values are hardcoded in INFORMATION_SCHEMA.TABLE_PRIVILEGES it isn't likely that the translationtable is already there.
If you lookup...
February 6, 2007 at 3:00 am
First thing to check is that dbareport actually has access to the database. Is the server online?
February 5, 2007 at 3:36 am
Hello,
You could relocate
AND BE.EmpTypCd = 2
AND StatusDesc.Typ = 1099
AND MoveTypeDesc.Typ = 1102
(BE.EmpFirstNm Like 's%' OR BE.EmpFamiliarNm LIKE 's%')
AND (BE.EmpPrevLastNm LIKE 's%' or BE.EmpLastNm Like 's%' )
AND CF.CustFileStatusDt >= CONVERT(DATETIME, GETDATE()...
February 5, 2007 at 3:33 am
Also using mm/dd/yyyy as dateformat is risky since it could be dd/mm/yyyy. Safest way is to use yyyymmdd
February 5, 2007 at 3:16 am
Permissions needed (from the books online):
TRUNCATE TABLE permissions default to the table owner, members of the sysadmin fixed server role, and the db_owner and db_ddladmin fixed database roles, and are...
February 1, 2007 at 5:28 am
What servicepack does the Access97 have, SP2?
February 1, 2007 at 5:11 am
Viewing 15 posts - 1,276 through 1,290 (of 2,044 total)