Viewing 15 posts - 1,381 through 1,395 (of 2,044 total)
adding Trusted_Connection=true means it needs to be windows authenticated.
Second, connecting as sa is a very serious security risc. I hope sa has a password.
September 7, 2006 at 5:21 am
found a kb article that might apply: (for standard edition)
http://support.microsoft.com/kb/316749/
Otherwise, are you profiling any performance counters?
September 5, 2006 at 7:40 am
found a kb article that might apply: (for standard edition)
http://support.microsoft.com/kb/316749/
Otherwise, are you profiling any performance counters?
September 5, 2006 at 7:40 am
select ...
from table1
where not exists (select PERMIT_ID from table1 table_bad where table1.PERMIT_ID=table_bad.PERMIT_ID and table_bad.PERMIT_EVENT_DT is null)
If could be rewritten to replace not exists, by some form of counting those whose...
September 4, 2006 at 2:49 am
Thanks for posting the solution.
Is it possible to post a link describing the issue with the cpu?
August 30, 2006 at 8:16 am
In such situations it is always helpfull to compare the execution plans of the queries, you can do this via the query analyzer: (Query) show estimated execution plan.
Possible reasons: the...
August 29, 2006 at 2:31 am
Looks your tempdb is running full or it can't grow fast enough.
Can you split your command in batches of 100 000? With a counter or something to remember the highest...
August 28, 2006 at 12:42 pm
Raid 5 isn't particulary recommended if there is a lot of writing activity. Looks splitting it up would be ideal. Can't say more since the largest raid I have are...
August 28, 2006 at 12:36 pm
not sure if it will work, but you will need an error check too at
OPEN C_TESTE
FETCH NEXT FROM C_TESTE INTO @CONT
->error check
August 23, 2006 at 1:10 pm
Can you give some textual output data?
Some things that might improve:
Union -> Union All
Rewrite CONVERT(varchar(10),ud.[date],110)=CONVERT(varchar(10),i.[itdate],110) to use BETWEEN instead of performing a function on a column
August 22, 2006 at 12:49 pm
Does it work when you write a parameterquery (as a query object) and use that query for the recordsource?
Is vwIndivPTMFcastbyProject a linked table or do you
use T-SQL?
August 17, 2006 at 9:55 am
Can you output debug.print strSQL or msgbox strSQL to verify strSQL?
August 17, 2006 at 5:11 am
Have you installed/reinstalled mdac 2.8? A newer version of mdac is already included in windows xp servicepack 2
Found a link on possible related error 126:
http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=91285&SiteID=1
August 15, 2006 at 4:28 am
pity me, I switched deleted (previous data) with inserted (new data)
CREATE TRIGGER TR_TEST_MANDATORY ON dbo.TEST for UPDATE, DELETE
AS
SET NOCOUNT ON
IF EXISTS(SELECT col1 from deleted /*old data*/ WHERE col1 in ('one','five'))
BEGIN
ROLLBACK TRANSACTION
END
Now...
August 14, 2006 at 4:08 pm
Goodday Homero
Could you try the following:
Making sure all previous installations are removed:
*No antivirus/antispyware program are running and that all sql server services are stopped.
Microsoft has some detailed steps on manually removing sql...
August 14, 2006 at 2:46 pm
Viewing 15 posts - 1,381 through 1,395 (of 2,044 total)