Forum Replies Created

Viewing 15 posts - 46 through 60 (of 91 total)

  • RE: Revoke/Deny permissions on Master and MSDB?

    Yes, there are default permissions (to public) on objects in master and msdb. For example, any user (public) can execute sp_password or any user can select * from sysfiles...

  • RE: Restore

    To grab the latest backup file? Assuming you know what the backup file filename is. You'd either need to know the filename or have some scheme to get...

  • RE: SQL2000 on 'card' on IBM AS400

    Yea, the cards can also leverage your storage costs - but using storage costs to justify anything is just silly anymore

    Space is really all you'll save....

  • RE: select from sp

    If a DTS package suits your purpose (or maybe it does and you don't know it yet ) - transformations from a SQL Server can use sp's....

  • RE: QOD 12 Sept 03

    HaHAHaa. It looked like everyone's guesses are spread evenly across the answers.

    It should be an analysis server category of question if there is a such category. Definately not...

  • RE: Weird REPLACE behavior

    Yea, I figured the underlying MS supplied function isn't handling the nulls properly. This one caught me off guard- Where are the emaill addresses? Some outputs I'd written...

  • RE: BCP with Format???

    As far as I know there is no way to automate or script the task to create the fmt files. If you're familiar with FMT files, .. er,...

  • RE: How do i get result of a query to a SP variable?

    Uh, how about a dynamic stored procedure. Like this:

    Declare @tablename sysname

    declare @tablecount int

    declare @strsql varchar(8000)

    set @tablename = 'authors'

    select @strsql = 'create procedure #temptest (@variable int = null OUTPUT) as...

  • RE: Several Local Temp Table questions

    Look up CREATE TABLE in BOL (and read under TEMPORARY TABLES) for the full explanation. I cut this excerpt out:

    A local temporary table created in a stored procedure is...

  • RE: How do i get result of a query to a SP variable?

    In the stored procedure write:

    declare @tablecount int

    select @tablecount = count(*) from authors

  • RE: help me

    quote:


    Not much to go on. If you can reproduce it, I'd call MS support about it.

    Andy

    http://www.sqlservercentral.com/columnists/awarren/


    September 3, 2003 at 10:03 am

    #472391

  • RE: help me

    My first instinct would be to try to hunt down the error at microsoft.com. Looking at your script (some of it looks like gibberish ), I...

  • RE: cliconfg

    quote:


    Is there a command line version of this cliconfg utility (SQL Server 2000)?


    I've never seen...

  • RE: job report success even though failed..

    This might sound weird but, does the package actually execute in the scheduler?

    Do you know the job is failing where you expect it to fail? On my more complicated...

  • RE: QOD 03 Sep 2003

    ooooh.. I didn't think about the permissions aspect of changing the service profile. I answered correct, but I couldn't quite put my finger on why EM would be...

Viewing 15 posts - 46 through 60 (of 91 total)