Forum Replies Created

Viewing 15 posts - 391 through 405 (of 446 total)

  • RE: replication

    rachel_13 (2/28/2008)


    hi

    i have a question . how to find the names of the tables that are being replicated in a database??

    select * from distribution..MSArticles

  • RE: List of Database, Login, and Roles

    Try this if it helps.

    ---------------------------------------------------------------------------------------

    -- run this from master database only

    USE master

    GO

    IF EXISTS (SELECT * FROM tempdb.dbo.sysobjects WHERE name = '##Users' AND type in (N'U'))

    ...

  • RE: Alter column order

    niranjankumar_k (2/28/2008)


    Without droping this table , anyother way just to mention in right order for new column ?

    If you don't want to write all script of what John had said....

  • RE: Latin1_General_BIN case sensitivity when inserting into tables

    mark blakey (2/27/2008)


    Ok I know I could recode them, but is there way to overide the case sensitivity in insert and update statements so they dont have to be recoded?

    Unfortunately...

  • RE: sqlserver memory increases constantly

    phani_va (2/26/2008)


    The machine has 2 3GHz CPU's with Windows 2003 SE SP2 and 3GB of RAM.

    Is there any way for me to tell sql server to flush these text col...

  • RE: transfering dts packages and jobs

    cqldba (2/26/2008)


    We need to copy all jobs and DTSs’ from one server to another server.....what is the best way to do it ?

    Also does the DTS packages/settings have connection to...

  • RE: Table Fragmentation

    You can check by executing dbcc showcontig on the database and then execute dbcc dbreindex command.

    Check books online for more details.

  • RE: Translate English to Persian using SQL Server 2005...

    Not possible in SSRS. We had issues displaying report in Arabic language. Developers still in contact with MS and let you know when they get some solution...

  • RE: Last time a table has been reindexed

    This works good both on SQL Server 2000 and also SQL Server 2005.

    SELECT object_name(si.[id]) AS [TableName]

    , rowcnt AS [Row Count]

    , CASE

    WHEN si.indid = 0 then 'Heap'

    WHEN si.indid = 1 then...

  • RE: Database Autogrow not working

    gopal.mailme (1/15/2008)


    Hi,,

    in few tables whole data is truncated and for few many rows are truncated. few are untouched.. all the affected table are in which bulk upload was done....

    kindly help,...

  • RE: sqlserver memory increases constantly

    What's the memory size on you server? Let us know your O/S with SQL server version + sp infomation. Also check in server logs if you are having...

  • RE: Send Mail without mail client?

    wouldn't xp_sendmail work in this scenario?

  • RE: Pulling user permissions

    Check if this script helps. I found it for long time back on net and was useful to me a lot of time.

    ---------------------------------------------------------------------------------------------

    create table #DBUSERS (DBNAME varchar(50),USERNAME varchar(50), MEMBERNAME...

  • RE: How to Export Stored Procedures to Text Files?

    $sanjayattray (2/22/2008)


    The most easiest way to generate script of user objects in SQL Server I think is just to select the objects and right click -> copy and paste it...

Viewing 15 posts - 391 through 405 (of 446 total)