Forum Replies Created

Viewing 15 posts - 1,126 through 1,140 (of 1,335 total)

  • RE: Novice sql server sql query question

    In SQL Server you can use the 3 or 4 part naming convention.

     

    LINKEDSERVER.DATABASENAME.OWNERNAME.OBJECTNAME for REMOTESERVER

    DATABASENAME.OWNER.OBJECTNAME for LOCAL SERVER DBs.

  • RE: Tracing users on db from the past...

    SPID keeps changing. An unallocated SPID used in past can be assigned to another user. Unless you have any moethods of logging enabled you will not able to track the...

  • RE: Query Tuning

    INNER LOOP join is same as the JOIN but it forces a nested loop join to occur instead of a hash/merge join. I read this in a blog and used...

  • RE: Security Best Practices

    Check in TechNet there are beautiful documnets for both security and securely deploying a SQL Server application. The y will give you data as much as needed.

  • RE: Logs, Logs, Logs.

    Go for logshipping. Yo can save ur logs files with it.

  • RE: Issues - SQL Server 2K - conencting remotely

    Is remote connection enabled. I hope they are by default disabled in SQL express version.

  • RE: Query Tuning

    All the columns used in the join are indexed. Infact the execution plan was showing a hash join and i have forced it to be a nested join using inner...

  • RE: Query Tuning

    Minaz,

    I shall read the link and follow suggestion given there. Is it poosible to see exactly which part in a query needs to be tuned.

  • RE: Scheduling a DTS package

    Can you post us the error message that you get while it is executed as a job?

  • RE: archiving data

    Why not considering to archive to a history table. By this way you ensure you have a table in your database that has history records and can be accessed whenever...

  • RE: 2000 to 2005

    After you restore you need to remove/resolve orphan users. that might be the reason why you dint get permissions at first.

  • RE: Problem w/ xp_cmdshell & network share

    Is firewall enabled between those servers. That might be one of the reasons. Also try giving the UNC path and check if you are able to perform the same successfully.

  • RE: /3GB on a cluster

    I don't think so just using /3GB switch will make sql to use more than 2 GB of ram. You should enable AWE also at the SQL Server level for...

  • RE: SPIDs, Connections, and Transactions

    If you have a connection that has executed and is not runnable you can check the coomand that it has executed and kill the spid. But check twice before you...

  • RE: Performance Goes Down - Help!

    Check the target server memory and total server memory. Might be a memory problem too. Check how much you r sql server is using. Each connection takes few memory for...

Viewing 15 posts - 1,126 through 1,140 (of 1,335 total)