Forum Replies Created

Viewing 15 posts - 1 through 15 (of 321 total)

  • RE: SQL Server Database 2005 - Problem with openning DataBase file

    open the sql server. go in the database properties and close all the connections connected to the database.

    kshitij kumar
    kshitij@krayknot.com
    www.krayknot.com

  • RE: Query perfomance Issue

    system configuration?

    kshitij kumar
    kshitij@krayknot.com
    www.krayknot.com

  • RE: Subquery returns more than 1 value

    dhaval_dsa (5/14/2010)


    CREATE PROCEDURE USP_UPDATESAL

    @DPID INT

    AS

    BEGIN

    DECLARE

    @DPTID INT,

    @SAL1 MONEY

    SET @DPTID=(SELECT deptid FROM Humans WHERE deptid=@DPID)

    SET @SAL1=

    CASE @DPTID

    ...

    kshitij kumar
    kshitij@krayknot.com
    www.krayknot.com

  • RE: Job inserts large volume of data can cause major issues.?

    Joy Smith San (4/22/2010)


    Hello Experts,

    I have a job running at night everyday.

    It pulls 2.5 million data from an oracle linked server and insert into tables in SQL Server 2005 datbase.

    My...

    kshitij kumar
    kshitij@krayknot.com
    www.krayknot.com

  • RE: Query involving multiple databases

    Arjun Sivadasan (4/22/2010)


    I am not sure if I should post this question in the TSQL forum.

    Scenario: There are five databases - db1, db2, db3, db4, db5

    In a query i need...

    kshitij kumar
    kshitij@krayknot.com
    www.krayknot.com

  • RE: Comparing datetime variable with varchar variable

    sachinrshetty (4/20/2010)


    Thank u Lowell for your answer but i have to pass a date value to this stored procedure from front end.

    So in which shall i pass either in mm/dd/yyy...

    kshitij kumar
    kshitij@krayknot.com
    www.krayknot.com

  • RE: Select all usernames except few usernames

    jaype-365633 (2/14/2010)


    Thanks a lot kshitij kumar it worked out well, can you please help on joining the tables with two or three databases

    in LINQ or iin SQL??

    kshitij kumar
    kshitij@krayknot.com
    www.krayknot.com

  • RE: Select all usernames except few usernames

    select * from <TABLE> where <cOLUMN> not in (nVALUES)

    kshitij kumar
    kshitij@krayknot.com
    www.krayknot.com

  • RE: SQL Server

    create a job in that sql server and set its schedule type to "Start automatically when SQL server agent starts" and set the notification to Email / Page or net...

    kshitij kumar
    kshitij@krayknot.com
    www.krayknot.com

  • RE: Caching a table

    you want data caching at database level or at the application level????

    kshitij kumar
    kshitij@krayknot.com
    www.krayknot.com

  • RE: Error 9002 transaction log for database "abc" is full

    if there is no other option than Truncate, then change the model from "Full" to "Simple" so that the database could contain the active portion of the log, then take...

    kshitij kumar
    kshitij@krayknot.com
    www.krayknot.com

  • RE: Table Naming conventions

    raju.tanneeru (2/1/2010)


    Hi Every one, good morning.

    currently my projects is in SQL 2005 and the project is moving to SQL 2008. when i am working on redesigning the data base i...

    kshitij kumar
    kshitij@krayknot.com
    www.krayknot.com

  • RE: Deciding whether adding RAM will help performance

    Yes adding RAM will help but that will also depend on the cache it will provide.

    RAM has its own limitations.

    Better you improve the application model

    kshitij kumar
    kshitij@krayknot.com
    www.krayknot.com

  • RE: Indexing a Large Table

    check the query execution plan and based on that you will come to know the reason probably.

    kshitij kumar
    kshitij@krayknot.com
    www.krayknot.com

  • RE: 'tempdb' is full

    sanketahir1985 (1/5/2010)


    as Shawn Melton said

    1. check for free space on drive where tempdb is stored

    &

    2. Try to truncate log of tempdb only if no users are using tempdb database.

    3....

    kshitij kumar
    kshitij@krayknot.com
    www.krayknot.com

Viewing 15 posts - 1 through 15 (of 321 total)