Forum Replies Created

Viewing 15 posts - 7,591 through 7,605 (of 7,635 total)

  • RE: SQL Server Locks Up

    I like to keep an idle SA or SysAdmin session open.

    If things seem like they are locking up, try

    Select * from master..sysprocesses with (NoLock)

    and work out...

  • RE: Create Login error with parameters

    Oops! I just remembered...

    A known limitation of CREATE LOGIN is that the login name has to be a literal.

    Thus, you will have to use dynamic SQL to parametize...

  • RE: Create Login error with parameters

    geedeearr (3/10/2008)


    Hi All,

    This should be simple but I seem to be playing with my mental blocks today. In the following Create Procedure I receive an "Incorrect syntax near '@NewPassword" referring...

  • RE: how to design audit trail

    molecule_kaab (3/10/2008)


    Thanks, all

    Actually I want to keep track for security and navigation

    I want the admin can tell who do what transaction and

    he can find that it's possible that the...

  • RE: Foreign key constraints in data warehouses

    Loner (2/7/2008)


    The cleansing routine is done during the ETL process. After the data loaded into the dimension table, it is not guaranteed that no one would delete it....

  • RE: Foreign key constraints in data warehouses

    RonKyle (3/10/2008)


    I suppose that for some downloads there would be no change to the dimension tables, but I haven't had that experience. There are always new dimension facts to...

  • RE: Search problems

    As Robert said look at the query plan(s). Specifically, you want to compare the query plans that work to the one that does not work.

    Let us know the results,...

  • RE: BCP problems (SQL2K)

    Markus2006 (3/10/2008)


    I'm working on application that uses BCP to copy data between servers and I encountered few problems that maybe someone could help me with.

    1. One of the tables that...

  • RE: using a case statement with Where clause

    glad we could help.

  • RE: Who did what?

    Nice. I will keep this one.

  • RE: Rg: Alter command

    swlakshmi (3/9/2008)


    thanks. But this query works only to modify one column. I need the query to modify more than one column at a time. Please send me the query to...

  • RE: Foreign key constraints in data warehouses

    Chuck Bevitt (2/7/2008)


    My question is, when the data warehouse database is implemented in SQL Server 2005, is there any point to adding SQL Server foreign key constraints between the fact...

  • RE: Cursor in SQl Server

    By far the most important tip on Cursors is: Avoid them as though they were leprosy.

  • RE: Default a user to the dbo schema in MS-SQL 2000

    I don't think that you get this capability until SQL 2005.

  • RE: Question of the Day for 16 Jan 2006

    All of the answers offered are incorrect.

    The correct answer is

    Use Database.ExecuteWithResults method to run the query SELECT create_date FROM SYS.Tables

Viewing 15 posts - 7,591 through 7,605 (of 7,635 total)