Forum Replies Created

Viewing 12 posts - 46 through 57 (of 57 total)

  • RE: sql 2000 desktop edition

    Thank you very much.

    LMT

  • RE: SQL Query problem - Please Help

    SELECT

    t_Retail.Pcde6P,

    Count(*) AS Total

    into #temp

    FROM t_Retail

    WHERE

    LEN (TRIM(t_Retail.Pcde6P)) = 6

    GROUP BY

    t_Retail.Pcde6P

    HAVING

    Count(t_Retail.Pcde6P) > 2

    ORDER BY

    Count(*) DESC

    SELECT *

    from t_Retail R

    WHERE exists

    ( select *

    from #temp TR

    where R.Pcde6P = TR.Pcde6P)

    drop table #temp

    🙂

    ...

  • RE: Really strange performance problem

    actually I made a small mistake there :

    select count(*) from uu_resume_ses_dummy_dummy

    where exists (select substring(col018_dominio,1,20)+substring(col018_dominio,20,10)

    from iis_uu_diario_resume where substring(col018_dominio,1,20)+substring(col018_dominio,20,10)

    = substring(uu_resume_ses_dummy_dummy.dominio,1,20)+substring(uu_resume_ses_dummy_dummy.dominio,20,10))

    option (maxdop 1)

  • RE: Really strange performance problem

    try this:

    select count(*) from uu_resume_ses_dummy_dummy

    where substring(dominio,1,30)

    not in (select substring(col018_dominio,1,20)+substring(col018_dominio,20,10)

    from iis_uu_diario_resume where substring(col018_dominio,1,20)+substring(col018_dominio,20,10)

    = substring(uu_resume_ses_dummy_dummy.dominio,1,20)+substring(uu_resume_ses_dummy_dummy.dominio,20,10))

    option (maxdop 1)

  • RE: error 7399

    I am running SQL 2000 SP3

    MDAC 2.7 SP1 on both servers

    yes, I know which query produced the error.Last nite it runned ...

  • RE: Standards Are a Good Thing

    I agree 100%

    I have a data warehouse and I had to reorganise all datafile and log files , plus move msdb, tempdb from D into a less OS drive

    Now, ...

  • RE: perfmon does not run remotely

    I found the sysmonlog and I will have a talk with my sysadmin about permissions.

    Thank you very much

    LMT

  • RE: Performance monitor Disk Counters

    very good articles in:

    http://www.sql-serverperformance.com/performance_monitor_counters.asp

    ...

    on their Home page you ca find a range of articles regarding perfmon in relation with SQL server

  • RE: How Do You Review a Product?

    One suggestion:

    why don't you make a scale of values, applicable to all packages.When DBA's test they will have a guideline as what to look for in every package

    as a small...

  • RE: How to audit connections to the database

    how I do it:

    for the users you think they do not access =>>>>>>>>take them out from the database(maintain them in security just in case)

    If nobody cries, then...

  • RE: how I find if a job is running or not?

    Sorry for confusion.I want to run a script that must start jobs in function of a trigger in another database.

    That is if job is not alive then start...

  • RE: Transaction log not clearing out

    yes

    I have a huge data warehouse and I make sure that after big loading processes I wil,cheal up my log.

    I am sure it is a bug.Especially because this type of...

Viewing 12 posts - 46 through 57 (of 57 total)