Forum Replies Created

Viewing 15 posts - 1 through 15 (of 21 total)

  • RE: Sql Server Change from local Account to Domain Account

    I've granted access to the path C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\DATA and finally the service is running.

    Thanks.

  • RE: Sql Server Change from local Account to Domain Account

    I've ready check startup parameters, they are right on its place, they are:

    -dC:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\DATA\master.mdf;
    -eC:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Log\ERRORLOG;
    -lC:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\DATA\mastlog.ldf

    I've Run as...

  • RE: Sql Server Change from local Account to Domain Account

    er sql - Tuesday, January 30, 2018 12:29 PM

    Hi, I'm trying to change SQL Server Account from local to Domain but I'm...

  • RE: Database Size (PSOFT)

    Thanks for the sugesstions, I'l try to move my non clustered index to a new filegroup.

    Thanks

  • RE: Database Size (PSOFT)

    Once a week on weekend, I have a task maintenance task that rebuid index, defrag, update statistics and other things.

    Actually my mdf and log file are on different disks, indexs...

  • RE: HOW TO RESTRIC INSERT IN A TABLE

    hi, I've implemented this.

    IF EXISTS (SELECT name FROM sysobjects

          WHERE name = 'NOT_FOR_INSERT' AND type = 'TR')

       DROP TRIGGER NOT_FOR_INSERT

    CREATE TRIGGER NOT_FOR_INSERT

    ON SERVICE_REQUEST

    FOR INSERT

    AS RAISERROR (50009, 16, 10)

    ROLLBACK TRANSACTION

    GO

     

     

  • RE: Operations With Dates*

    Finally,I need to update status column when my Request_Date value is the same that getdate value, the time value is not the same, in my column I have 2005-06-06 00:00:00.000 and getdate has...

  • RE: Operations With Dates*

    Excelent It's working.

    Thanks guys.

  • RE: Stored Procedure to load excel data into sql table

    Finally, It's working.

    I'm using DTS, I've created my source(xls), my destiny (SQL), Execute Slq Task and I'ts working.

     

    Thanks everyone  for your advices.

  • RE: Stored Procedure to load excel data into sql table

    Actually I'm working with DTS but I need to call this functionality from an asp page, in other words, I have an application that needs to load data from an excel file and...

  • RE: Select Distinct

    the problem is when the character is not allways in the same position, it could be D00A, OR D000000A, the data stored at the column has different lenght.

     

    Thank for the...

  • RE: Compare Databases

    Thanks, I got sql compare software to compare my databases.

     

    Tanks everyone.

     

     

     

  • RE: Compare Databases

    I using two different ways to move my databases, one is Import or Export a database and the other to restore in a new location my databse using a backup....

  • RE: Insert or Update Stored Procedure

    The Oracle Database is on Windows.

  • RE: Insert or Update Stored Procedure

    I need to run the stored procedure in Sql Server and It's going to be called by Oracle, Oracle has the data.

    I wrote these:

    CREATE PROCEDURE SP_SIAB_INS_UPD (

     @NO_BIEN AS INT,

     @DESCRIPCION AS VARCHAR(1250),

     @CANTIDAD as int,

     @DEL_ADMON...

Viewing 15 posts - 1 through 15 (of 21 total)