Forum Replies Created

Viewing 15 posts - 16 through 30 (of 53 total)

  • RE: SQL License key required

    It didn't ask the key before because before you installed only sql tools, but when you try to install full sql server it promts for key.

  • RE: Linked table

    Thank you so much, it works.

  • RE: Linked table

    Access understands bigint in SQL as Text datatype. Why it can't hadle it as text datatype?

  • RE: Duplicates

    The second query is much faster and do the job.

    Thank you very much.

  • RE: Duplicates

    I'll try all ways and let you know.

    You absolutely right about normalizing this table, but it's not in my power.

  • RE: Duplicates

    What I supposed to do was:

    select ID, col1,col2, ..., col12 where (col1=col2 or col1=col3 ...or col1=col12) and col1 is not NULL and col2 is not null...and col12 is not null...

  • RE: Duplicates

    Duplicates are for ID=1 - col1 and col12, for ID=2 - col1 and col3, and another pair col2 and col12, for ID=3 and 4 - no dups. I want to update...

  • RE: BCP and encrypted password

    You can create stored procedure with encription.

  • RE: sql agent not running.

    Look in cluster administrator, you will see it online.

  • RE: Help with linked server

    Look in BOL

    SELECT a.*

    FROM OPENROWSET('Microsoft.Jet.OLEDB.4.0',

       'c:\MSOffice\Access\Samples\northwind.mdb';'admin';'mypwd', Orders)

       AS a

    GO

  • RE: Scripting off indexes.

    Try this

     

    /****** Object:  Stored Procedure dbo.index_all_tables    Script Date: 5/19/00 12:24:02 PM ******/

    CREATE PROCEDURE index_all_tables

    AS

    /*

     This procedure will generate a short report of the sp_helpindex

     output for all tables within this database.

    */

    DECLARE...

  • RE: Scripting database schemas from a job

    Can somebody publish the script for sp_generate_script?

  • RE: Select distinct col1, max(col2) from

    Thanks so much, it works.

  • RE: Creating a Database from a SP

    I need to generate full db script every week as DBA documentation. Want to do it automatically on schedule.

  • RE: Creating a Database from a SP

    Is there a way to generate db script automatically based on schedule? May be some third party tools. 

Viewing 15 posts - 16 through 30 (of 53 total)