Forum Replies Created

Viewing 15 posts - 1,681 through 1,695 (of 2,051 total)

  • RE: Strange Performance Problem...

    Better late than never.

    1)

    If sql server is the only running application, why don't you give it 7GB to work with?

    ->SQL Cache Hit Ratio - 87-90% is quite low.

    Have a look...

  • RE: Time out and transactions committed gets rollback

    Not sure but are all commands done within the same connection?

    Can't find it immediately but the application is responsible for committing/rollbacking the transaction in case of an error.

    When the connection...

  • RE: Best Practices for Testing Back Ups

    Backup how often:

    Depends on requirement (how much of the data may be gone, how critical is the database)

    Depends on the time limit to restore a database. If your timewindow is...

  • RE: link table data modify and add

    This looks like a MSAccess matter.

    Can we see the DLL of your Table? (use sql enterprise manager or sql analyzer to generate a create table script)

    Does the linked table layout...

  • RE: Help! Dos 255 Error from DTS Execute Process task

    Who/what starts the job? sql agent?

  • RE: Timestamp Showing As

    You're welcome

  • RE: SQL Server allowing duplicate key in a primary key field!!!!

    I've gotten those duplicates too.

    In this case it was a emergency recovery and the indexes were partially corrupted.

    Solved by dropping all indexes, running a DBCC CHECKTABLE, removing the duplicates (in my...

  • RE: Foreign Key constraint issue

    what kind of field is PersonId? char, varchar, int?

    Are you checking the right table? (have you specified an owner like dbo)

  • RE: Sequence Numbers

    Surely possible with a cursor.

    Will think about a set based solution.

  • RE: Job Problem

    Does sqlagent has sysadmin rights?

    Allows a member of the sysadmin fixed server role or db_owner fixed database role to impersonate another user.

    <IMG style="MARGIN-LEFT: 0em" height=11 alt="" src="mk:@MSITStore

  • RE: Create User on install & password on install

    sp_grantdbaccess grants access to a database

    Use sp_grantlogin to reverse the effects of a previous sp_denylogin that has been executed for a Windows NT user.

    Use sp_addlogin to allow a SQL Server...

  • RE: Work table..

    Work Table? You mean a table to dump all your information in for further processing?

  • RE: Timestamp Showing As

    With which tool you see <binary> (EM?)

    I see the different values with query analyzer.

     

  • RE: How to secure the SQL table''''s content?

    Since sa is a systemadministrator, they have full access (no permission checking).

    If normal accounts are used you can make views

    CREATE VIEW ABC AS

    SELECT ... FROM ...

    WHERE entry.USER_ID= SUSER_SID

    WITH...

  • RE: Schema binding

    SCHEMABINDING:

    Binds the view to the schema. When SCHEMABINDING is specified, the select_statement must include the two-part names (owner.object) of tables, views, or user-defined functions referenced.

    Views or tables...

Viewing 15 posts - 1,681 through 1,695 (of 2,051 total)