Forum Replies Created

Viewing 15 posts - 7,186 through 7,200 (of 7,429 total)

  • RE: Using Linked Server

    Also try this if you don't know for sure.

    EXEC sp_addlinkedserver

    @server = 'YourNameForLinkServerHere',

    @srvproduct = 'Oracle',

    @provider = 'OraOLEDB.Oracle.1',

    @datasrc = 'WhatYouEnterForHostStringInSQL*Plus'

    This will use the native Oracle Driver if everything else is right, and...

  • RE: Using Linked Server

    Ok let's back up, I got to reading here. What is the value you input for Host String in SQL*Plus, and is this an ODBC entry on your machine or...

  • RE: Using Linked Server

    Sorry, I did not see a post about the error. What is the error message you are getting?

  • RE: default column alter

    From SQL Books Online ALTER COLUMN cannot be used on a column associated with a default, except that changing the length, precision, or scale of a column is allowed if...

  • RE: Using Linked Server

    Syntax

    sp_addlinkedsrvlogin [ @rmtsrvname = ] 'rmtsrvname'

    [ , [ @useself = ] 'useself' ]

    [ , [ @locallogin = ] 'locallogin' ]...

  • RE: SQL bug - referencing user defined functions?

    These should answer your question. They are from SQL Books Online. Statement 1 in Function Invocation and statement 3 in Permissions apply to your question.

    Function Invocation

    Scalar-valued functions may be invoked...

  • RE: Replication from 7.0 to 2000

    From what I have seen the only known problem is with immediate updating subsribers that you can read about here http://support.microsoft.com/default.aspx?scid=kb;en-us;Q271727. The problem is a design difference.

  • RE: Error Declaring a For update cursor

    Looking around I found a reference I want to verify. Does the table have a unique index? Also so I know what is up with the table could you please...

  • RE: T-SQL Problem... [?]

    Hint think about the order of the data and what you can do with it and how you can get the first record out of a data set.

  • RE: SQL Server Security Part 3

    Well done article, nicely presented with reference material.

  • RE: Try the SQL Parser Object to Colorize your SQL!

    I just tend to stick with Query Analyzer or work in NotePad (yeah just plain old text). And had got curious about this previously. I will say thou in previous...

  • RE: User defined function

    How will they access the data first. If thru access then right view to database (but I hope you are not using access as it will drag large DBs down...

  • RE: Object Naming Standards

    In my office we adopted a precomment to views and stored procedures (which still not everyone follows). But it our databases especially those created in the last 8 months by...

  • RE: SHOW TABLES

    You should avoid the sysobjects and other similar tables as they may change in future releases and for the moment Microsoft is saying you the SPs or Schema views as...

  • RE: Obtaining fixed datasets in a dynamic system

    Plus with Brians statement you could write it as a summary of the records so if someone wants trending on the values you do not have to recalc saving you...

Viewing 15 posts - 7,186 through 7,200 (of 7,429 total)