Forum Replies Created

Viewing 15 posts - 27,691 through 27,705 (of 39,769 total)

  • RE: Temporary Table

    I love the argument a backup is needed?

    I think your instructors are perhaps lacking some understanding of how SQL Server should be run.

  • RE: SQL Server Install organizational standards.

    I've done something similar to Jason in the past. having standard drive letters makes a huge difference since everyone knows backups are on "z"

    Be sure that your arrays are physically...

  • RE: SQL 2005/Mgmt Studio won't close database on exit

    If you detach it every time, you'll need to attach it again. It won't be in your list of databases.

    What are you trying to do here? Meaning what's your process...

  • RE: Duplicate entries...

    I agree with the advice above, but you might try simplying with a view or CTE for part of the query (either with or without the stock level). Sometimes breaking...

  • RE: The IT Employee Benchmark

    Getting references and using your network is important, but honestly, I'm mostly with Jeff. A good technical interview and my instincts are what I mostly use.

  • RE: Virtual Conversions

    The rule is ALWAYS "It depends"

    There are print servers that overload hardware and there are SQL instances that could run alongside almost any other software.

    Virtualization is about using more of...

  • RE: Knock, Knock…Who's There?

    I think Americans in general are a little arrogant, and overall, culturally ignorant. We tend to see the US as the center of the world. There's some basis with our...

  • RE: Virtual Conversions

    I have friends running production boxes as virtual servers, but they watch the loads for SQL Server. The SQL Servers don't float and share physical resources with lower use stuff.

    Other...

  • RE: Enable xp_cmdshell in sql 2000

    What is your code?

    xp_cmdshell is in master, so you might need to call it as

    exec master.dbo.xp_cmdshell

  • RE: OUTPUT Parameter or SELECT required Col

    I haven't run them under load, but I tend to view these as Gsquared has mentioned.

  • RE: Login

    I assume you mean login created. By default, only those database that have a guest user will allow the new login to access them. If you create a user (mapping...

  • RE: Database Growth

    Is it the database or the log that's growing?

    You need to schedule backups for both of those regularly.

  • RE: protecting a table

    Don't give the users rights to do these tasks. By default, users have no rights to tables. If you do not use db_owner or sysadmin rights as a general rule,...

  • RE: How can I track Stored Procedure Changes?

    Please don't cross post. Post your question in only one forum.

  • RE: Finding DML statements in stored procedures with SQL Profiler

    You can profile at the statement level, which I think will catch statements inside stored procedures.

Viewing 15 posts - 27,691 through 27,705 (of 39,769 total)