Forum Replies Created

Viewing 15 posts - 451 through 465 (of 774 total)

  • RE: T-SQL - View

    Let me give you the real view:

    ALTER view [dbo].[V_SMPN_CONTRIBUINTES]

    as

    select

    a.NIF+isnull(filial_number,'') as NIF,a.COD_MET_TRIBUTARIO,a.NOME,a.STATUS,a.COD_PROVINCIA,

    a.COD_REP_FISCAL,null as cod_enquadramento,null as Tipo_Empresa,null as dt_constituicao,null as num_dr,null as dt_dr,

    null as...

  • RE: T-SQL - View

    create view test

    as

    Select a.nome,null as morada from table1 as a

    union

    select b.nome, b.morada from table2 as b

    union

    select c.nome, null as morada from table3 as

    Here it is

  • RE: Maintenance plan

    Sorry, didn't undestood your question.

    I have created a maintenance plan with two sub plans (each subplan is a job).

    When i click in the Maintenance plan name i can not script...

  • RE: SQL Server 2010

    Did Microsoft allready told when it will release the sql denali ?

  • RE: Maintenance plan

    Sorry i didn't read the message well.

    The version is developer edition and in production we have enterprise

  • RE: Maintenance plan

    It's SQL2005. But the option is there.... How can not support if the check box is there?

  • RE: Can 't make backups database with problems

    I can not make backups has mentioned.

    People are not working, is there a problem in rebuilding all the indexes instead of just one?

    thanks.

  • RE: Same database in two places

    can there be down time, aka maintenace mode..where the servers are unavailable?

    yes, if for a small amout of time

  • RE: Same database in two places

    yes. that is correct.

    But i think that even if i had replication the same thing would happen, correct?

  • RE: Same database in two places

    In that case i think i will do an app in .NET taht exports XML between the two databases...

  • RE: Same database in two places

    Yes, they are made in both locations.

  • RE: Same database in two places

    There is no internet.

    "can they be reconsiled at the end of the day" , Yes they can.

    500 MB of size

  • RE: Add Id to the cokumn

    didn't undestood your answer 🙂

  • RE: Add Id to the cokumn

    Maybe in my case it is not necessary.

    This is the problem:

    I have created a table named TempImport which imports data using bulk insert.

    This TempImport is an empty table and every...

  • RE: Changing recovery model

    Ok, thank you.

    So, in my case what would you do?

    Would you let the databases stay in simple recovery model and make regular differencial backups or would you change it to...

Viewing 15 posts - 451 through 465 (of 774 total)