Forum Replies Created

Viewing 15 posts - 4,816 through 4,830 (of 7,497 total)

  • RE: Reindexing problem(Please help)

    I've also interpreted thesqlgurus comment as non-personal, but a pointing to a practise that arises more and more.

    Companies should learn sqlserver is way more than an enhancement of msaccess :sick:

    The...

  • RE: Proxy account not working when logged off

    What's the exact error you are receiving if the proxy is not logged in ?

  • RE: Proxy account not working when logged off

    - are you using (mapped) drive letters in your packages (file locations) ?

    Use UNC !

    don't use file = 'x:\myfolder\myfile.txt'

    but use file='\\myserver.mydomain\myshare\myfolder\myfile.txt'

  • RE: SP LOG SPEACE IS RELEASED OR NOT

    NO! a proc only influences the database.

    Depending on the recovery model of that particular database, log file entries can be overwritten or not.

    In normal situations, it is considered to be...

  • RE: Compare Two columns and update the Third Column

    check BOL for the case statement;

    update mytable

    set col3 = case when col1='abc' and col2 = 'def' then col4

    ...

  • RE: SAN best practices

    GilaMonster (5/21/2008)


    ...I need to ensure I have a faulty telephone, so that the dealers don't phone me up and yell every afternoon around 4. ...

    Shall I send you my old...

  • RE: fetching a stored procedure

    rea|and (5/20/2008)


    thanks guys,

    @ALZDBA: so, you say that there's no way to "catch" a second resultset (my sp returns two recordset).

    And actually I've tried to use your method but it seems...

  • RE: Check if table is partitioned?

    /*

    show partitioned objects

    */

    select distinct

    p.[object_id],

    TbName = OBJECT_NAME(p.[object_id]),

    index_name = i.[name],

    index_type_desc = i.type_desc,

    partition_scheme = ps.[name],

    ...

  • RE: fetching a stored procedure

    You'll need a (temporary) table and you can only "catch" the first resultset, and output parameters.

    create table #tmpResults (col......)

    insert into #tmpResults

    exec usp_whatever (.....)

  • RE: Msdb mark Suspect

    - did you encounter errors when doing all this ?

    - what does sqlservers errorlog state?

    - this once more proves you really need backups !

  • RE: MS-Access to SQL 2005

    I would certainly test SSMA.

    Download it, install it, and see what kind of remark, warning, errors it gives.

    You may need to do some stuff as a perparation for the migration.

    Make...

  • RE: Reindexing problem(Please help)

    syedbilalmasaud (5/19/2008)


    ok let me try with print statement and see the results and let you know , if you can write script for my specific database it will be very...

  • RE: *= VS left outer join

    ...(vendor)...

    Not much you can do about it, but complain :ermm: ......

    It would be better to have your companies "software-client" complain and request a sql2005 certificate for it.

    Let them reside...

  • RE: Reindexing problem(Please help)

    If I were in your shoes, I'd look for "exec" statements, and replace them with "print" statements, then execute the script a see what it does.

    It was wrong of me...

  • RE: Execute a Stored Proc as a background process

    rbarryyoung (5/18/2008)


    ALZDBA, unfortunately, what that footnote is describing is all that Express Edition can do. It cannot exchange messages with Express Edtion instances, including itself. It can only...

Viewing 15 posts - 4,816 through 4,830 (of 7,497 total)