Forum Replies Created

Viewing 15 posts - 61 through 75 (of 123 total)

  • RE: Huge msdb - not backup logs

     

    Hi Tom,

    first we need to find out what table really causes the problem. Run this script then according to the results we can certainly find the big...

  • RE: Huge msdb - not backup logs

    It's related with API repository. BOL ref:

    mk:@MSITStore:C:\Program%20Files\Microsoft%20SQL%20Server\80\Tools\Books\repospr.chm::/rrsqlschema_2m79.htm

    You are using API's right? I guess the versioning information is stored on that table.

  • RE: Null and 0 in Order by Clause

    You are welcome, enjoy it.

  • RE: Starting a remote service on a server.

    You can use netsvc if it is installed on your computer.

    NETSVC servicename \\computername /command 
       servicename  Name of the service 
       computername Name of the computer to administer. 
      ...
  • RE: Null and 0 in Order by Clause

    Where I meant to put the isnull clause was the "order by" of your query. I think it won't be too difficult to change only that part. In case I understand...

  • RE: Null and 0 in Order by Clause

    You can use "isnull(column_name,0)" in the order clause but using a function in the order or join clause kills the indexes you know.

  • RE: Kind of a wierd question about Transaction Logs

    If I didn't understand you wrong you want to make the log file smaller, right. What you need to do is in fact simple.

    DUMP TRAN [DB_NAME] WITH NO_LOG

    DUMP TRAN [DB_NAME]...

  • RE: transactions rolled forward

    If you get this message after you started the SQL service it indicates that the transactions that are about to commit right when you close down the SQL engine are...

  • RE: When to divide the table?

    Thanks a lot everybody.

    I know what I represented as my table is a bit general but since I wanted to reach a general rule for dividing tables I choose that...

  • RE: When to divide the table?

    Thanks for replies!

    Let me tell you what I'm faced with by making example of it

    The table (and some dummy data was like that)

    IDColAColBColCColDColE
    ----------------------------------
    1AAABBBCCCDDDEEE
    2AAABBBCCCDDDEEE
    3AAABBBCCCDDDEEE
    4AAABBBCCCDDDEEE
    5AAABBBCCCDDDEEE
    6AAABBBCCCDDDEEE
    7AAABBBCCCDDDEEE

    All (or most) of the columns has non-null...

  • RE: New Server Install with SQL_AltDiction_Cp850_CS_AS

    I think I didn't understand your question clearly, "SQL_AltDiction_Cp850_CS_AS" option exists within the drop-down menu so you can select it. Can you describe the problem.

    Zubeyir

  • RE: Help with smtp mail

    If you are using SQL 2005 than you do not need to use another thing. But if you are using SQL 2000 you need to use some extended stored procedure...

  • RE: Enter a NULL value into a field in the EM datagrid?

    Shorcut for NULL value is "CTRL+0"

    For general shortcut keys look for BOL "shortcut keys" term

    Cheers,

    Zubeyir

  • RE: SQL2000 SP 4 performance issues

    Enjoy it 

    Zubeyir

  • RE: Sync tables

    Try to place a trigger on the source table that inserts new rows into the destination table. In order to do this you need to make a linked server connection...

Viewing 15 posts - 61 through 75 (of 123 total)