Forum Replies Created

Viewing 15 posts - 45,946 through 45,960 (of 49,571 total)

  • RE: To Certify or Not To Certify

    To clarify:

    I do recommend that people get certified, but not because that it will not guarantee a job (it won't). But because in the process of studying for the cert...

  • RE: Copying tables from one database to another (databases are on different servers)

    bcp is a command line import/export tool. There are a multitude of command line options and switches. Books Online has a full list of all and some examples on usage.

    Basically...

  • RE: To Certify or Not To Certify

    I have different ways I feel about certifications in different circumstances.

    When I'm interviewing, I assume that the fact that a person has a certification means that he/she knows that area....

  • RE: How do I move SQL from 32 to 64?

    Doctor Who 2 (7/4/2008)


    I've got a couple of SQL Server 2005 databases on a 32-bit OS, which I want to move to a 64-bit OS. Can I just copy...

  • RE: Why both "Target Server Memory" & "Total Server Memory" 0 ?

    maruf24 (7/5/2008)


    gail cnt we reinstal sqlserver

    That's a little extreme as a fix for missing counters.

  • RE: How i discover the origin (ip of the host) of a process?

    If you query the dmv sys.dm_exec_connections, you will see the ip address.

    I don't know of any way to lock someone out by IP. If they are using a specific...

  • RE: SQL injection cleanup?

    Do you perhaps have a backup from before the attack hit? Restoring is probably the fastest way to clean up. Bear in mind, the attack may have done more than...

  • RE: Randomly Pick Specified Number of Rows?

    That would work in 2005. In SQL 2000, try rowcount.

    SET ROWCOUNT @NumRows

    SELECT *

    FROM Northwind.dbo.Customers

    ORDER BY NEWID();

    SET ROWCOUNT 0

    Please note, I don't have a 2000 server handy to test this. I...

  • RE: Avoid Stored proc Fire triggers

    Can you maybe post the code of the trigger?

  • RE: I Need Full Info of MCTS(70-431) exam,Please give me Tutorial and Hints.

    richard (7/4/2008)


    Hi guys,

    I have just got back home having passed 70-431 🙂

    Very pleased to gain my first MS certification!

    Richard

    Congrats! What was your score?

    So, which exam's next on your list? :hehe:

  • RE: Effect of UPDATE STATISTICS

    It should do. It is recommended that the statistics of all tables (in all databases) get updated after upgrading from 2000 to 2005.

    The reason is that 2005 keeps more detailed...

  • RE: DBA Certification

    Vijaya Kadiyala (7/4/2008)


    Hi,

    Finally when you are ready test ur-self against TestKing. This will tell you where do stand in.

    Do NOT use testking. They are a braindump site. Their stuff is...

  • RE: Using trace captures

    This should get you started

    SELECT execution_count, total_worker_time, total_physical_reads, total_logical_reads, total_elapsed_time, creation_time, st.text,

    qs.sql_handle, qs.plan_handle, qp.query_plan

    FROM sys.dm_exec_query_stats qs INNER JOIN sys.dm_exec_cached_plans cp ON qs.plan_handle = cp.plan_handle

    CROSS APPLY sys.dm_exec_query_plan(qs.plan_handle) qp

    CROSS APPLY sys.dm_exec_sql_text(qs.sql_handle) st

  • RE: Avoid Stored proc Fire triggers

    You could disable the trigger, run the delete and reenable it. There's the risk that another delete runs while the trigger is disabled.

    Is there anything about the session/connection properties that...

  • RE: Date format error

    Jonathan Mallia (7/4/2008)


    I cannot do this as i must use the date in question for querying in reports etc

    You said you wanted to change the dates to something like '1900/01/01'?

    If...

Viewing 15 posts - 45,946 through 45,960 (of 49,571 total)