Forum Replies Created

Viewing 15 posts - 331 through 345 (of 497 total)

  • RE: SELECT UDF FROM MS ACCESS

    I don't think you will be able to do that. However you could create a function in Access that duplicates the functionality.

    Why not create a View with the date fields...

  • RE: Text file into a Varchar column

    I'd probably be even more lazy(?). Since I use Visual Studio for all my dev work I would simply create a project with all the files. Then have Visual Studio...

  • RE: Export to a text file

    lambje,

    What "Gary" are you refering to? 🙂

    I was responding to Gary Billins question on Excel files only. For text files I would use BCP as stated above. But for...

  • RE: Tool to format code

    I've always just used a macro in Visual Studio for this. I don't know of any tools that will do this for you though. Plus I probably wouldn't like their...

  • RE: Problems with hyphen in computer (server) name

    As Allen stated you need to use the square brackets and you should be OK. The only place I have found where this doesn't work is when you are using...

  • RE: Getting A Value From All User Tables

    I think what I would do is create a temp table and do an insert of the table name and date.

    IE:

    
    
    DECLARE @SQL nvarchar(4000)
    ...
  • RE: More SQL Transaction stored procedure help.

    Buddy,

    Since you don't have "BEGIN" and "END" on your error block he will never get to the second query! 🙂

    mcmcom Give this a try....

    
    
    CREATE PROCEDURE...
  • RE: Full Text Search and Noise Words

    Noise words are stored in a text file.

    FROM BOL: SQL Server includes a standard list of noise words in the directory \Mssql\Ftdata\Sqlserver\Config

    If you are having troubles with the queries...

  • RE: replication from SQL 2000 to SQL 7.0

    Also,

    You will want to use Snapshot replication for Views, SP's, and Functions(SQL 2K only) as you can simply update the snapshot and replicate it out.

    Gary Johnson

    Microsoft Natural Language Group

    DBA, Sr....

  • RE: Merge Replication - data sync

    I don't know of anyway to do that. Why do you need it to be separated?

    Gary Johnson

    Microsoft Natural Language Group

    DBA, Sr. DB Engineer

  • RE: Merge SQL 2000 Vs SQL 7

    If you open Enterprise manager on the machine that gives you the error and then go to the Replication Monitor and check the refresh rate settings you will find that...

  • RE: adding linked server

    Give this a try...

    
    
    IF NOT EXISTS (SELECT srvname FROM master.dbo.sysservers WHERE srvname = <ServerName>)
    EXEC sp_addlinkedserver <ServerName>
    GO

    --now do the mapping from local machine to Servers remote...
  • RE: Order of Rows Imported Into SQL Svr 2000 Frm Excel

    canguru,

    In SQL Server the ONLY way you can guarantee that the ordering of your resultset is correct is to put an ORDER BY clause on your select statement. There are...

  • RE: Export to a text file

    Gary,

    If you want to create/get data from Excel use OPENDATASOURCE. It is by far the easier way to go. The only problems I have had is that I have to...

  • RE: How to open text file in Stored Procedure [SQL v7]

    Personally I would use BCP to pull the data in and then push it back out.

    Something along the lines of...

     
    
    SELECT @SQL = 'bcp...

Viewing 15 posts - 331 through 345 (of 497 total)