Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Ovatvvon
  • Content: Threads
  • Order by date
  1. Ovatvvon

    using PCIe x16 slots for two different devices?

    Hi everyone, Quick question: If a motherboard, such as the "ASUS RAMPAGE FORMULA (x48)" has two PCIe x16 slots, and I want to use both slots, do they have to be two SLI video cards working together? Or, can I use one for a video card, and the other for a disk controller card to setup a RAID...
  2. Ovatvvon

    PERFMON - Percent Idle Time (disk)

    Hi Everyone, For anyone who's used PerfMon (at least on Windows 2003): I used it to collect performance data while users pounded the database. The results came back a bit funny for the % Idle Time counter though. In several cases, the MAX value for all counters was above 100%. In fact, it...
  3. Ovatvvon

    Database Snapshots - clarification quesetion

    Hi Everyone, According to: http://msdn.microsoft.com/en-us/library/ms187054.aspx Database Snapshots in SQL 2005 do not provide a "true" separate database to read from, for reporting purposes. Instead, only initial updates at the page level will be stored in the snapshot, but the user will be...
  4. Ovatvvon

    Database Owner vs. DBO Permissions

    Hi, I realize this is probably a rather stupid question but: Are there any added permissions by assigning an account as a Database Owner (i.e. sp_changedbowner 'user account'), rather than simply giving it DBO permissions within a database? -Ovatvvon :-Q
  5. Ovatvvon

    Full Text Indexing Setup

    Hi, When enabling Full Text Indexing on a database in SQL 2005, you can easily enough click the checkbox in the database properties GUI. But if you want to specify where on the file-system you want the FT files to reside, where do you specify that? The only place I know of is in the files tab...
  6. Ovatvvon

    SQL 2008 - Change Data Capture - Merge question

    Hi all, We're trying to find a good solution to do incremental updates across databases. I was looking at the Change Data Capture feature in 2008, as well as Merge command for it. Does anyone know if this feature requires the two tables (source and destination) to be in the same database? Or...
  7. Ovatvvon

    Query with High CPU Cost

    This select query runs on our servers, and runs for a few days without ceasing, causing the CPU to run between 90%-100%. I ran an estimated execution plan against it, and 80% of the cost is from an Index Seek, and about 20% is from the sort. I did a rebuild on the Index, and updated the stats...
  8. Ovatvvon

    How to forecast the size of a full text index?

    Anyone know any good rules of thumb for predicting how large a fulltext index will be on disk based on whatever the size of the database / column is? -Ovatvvon :-Q
  9. Ovatvvon

    Database User Can't Edit Their Own SQL Job

    Hi Everyone, I have a user / client who created a SQL Job on their dedicated server, so they are set as the job owner, and they have permissions for SQLAgentUser in MSDB, but all of the sudden now, they can no longer edit their job (i.e. Job Steps, etc). We even set the user to...
  10. Ovatvvon

    Linking to AS 2005 SP2 with Excel, Menus not displaying

    Greetings: We have an AS 2005 server with SP2 installed. A client is trying to use Pivot Tables with the OLAP cube, however, I guess the "Value Filters" are not displaying for them. According to the following two websites: http://www.microsoft.com/sql/technologies/analysis/overview.mspx...
  11. Ovatvvon

    Select all data types

    What is the easiest way to find all numeric and decimal data type columns in a database? I'm presuming I'd select from sysobjects, but not sure if I should select on xtype, or another column, and also what specific column value I should search for to find the data types I want to find. Any...
  12. Ovatvvon

    SQL 2005 Account - Determine Date Last Changed

    I am almost positive there is a stored procedure that you can run and input the SQL Account on the system in SQL 2005 where it will tell you the last date the password was changed on that account. Does anyone know what that S.P. is named? -Ovatvvon :-Q
  13. Ovatvvon

    Weird happenings with Ansi Warnings setting on SQL 2005

    Hi all, The Problem I have a client who is testing their app with SQL 2005. It was working fine in SQL 2000. On the new DBMS, when a query is run (which was not causing problems in SQL 2000), it is giving an error stating: Server: Msg 8152, Level 16, State 14, Line 1 String or binary data...
  14. Ovatvvon

    Cannot Reverse Engineer Database

    Hi, I'm running Visio 2003. I try to connect to a db server on the same domain, to have Visio reverse engineer the db, but it is having issues. If I select the MS SQL Server driver, it gives me the following error message after typing in the UID/PWD credentials: The currently selected Visio...
  15. Ovatvvon

    Security Roles - What Each Does

    I have little exposure to A.S. There are three security levels: Read Def (which I presume only allows users to read the cubes, etc); Process database, and then Full control. If users need to create cubes, etc, will they need full control? What is the difference between process database and...
  16. Ovatvvon

    84 GB of Unused Space

    I have a client with a table in their database that is 97 GB in size: 12 is the data, 84 is Unused space. I'm unable to shrink the DB. The db is comprised of three columns: 1) int 2) nvarchar(250) 3) float Question: I know int and nvarchar shouldn't be a problem. Does anyone know if...
  17. Ovatvvon

    Cannot grant Login Access to the Proxy account.

    Hello all. I have a couple clients who have jobs that use CmdExec to run their processes. If I set SA to be the owner of the job, and even if I grant all three SQLAgent roles (including SQLAgentOperatorRole) to my individual client, they cannot edit the job. They can only view it. However...
  18. Ovatvvon

    Unable to get rid of Unused Space in SQL 2005 Database

    Hi All, I have a 270 GB database that has a lot of activity on it 24/7. Approximately 30% of the database is unused space. I've tried shrinking it every which way, but can't. It completes successfully, but the space remains. (I can get rid of unallocated space no problem, but unused...
  19. Ovatvvon

    Select Top, Bottom...is there a middle?

    Hi all, As you know, we can select the top or bottom set number of records by specifying something like... Select Top 25 * From someDBname Is there something like mid or middle where we can specify what record to start at, and how many records to retrieve after that? For instance, if a...
  20. Ovatvvon

    Change Permission on SP or View using T-SQL

    I have hundreds of Views and Stored Procedures where I need to add View Definitions permissions to for the Public role for the database. What would be the easiest way to set the permission for each View and SP for the DB Public Role short of manually going through each one in the GUI and...

Part and Inventory Search

Back
Top