Forum Replies Created

Viewing 15 posts - 616 through 630 (of 707 total)

  • RE: SQL liked server error

    marees.inspire (5/14/2009)


    Hi Al,

    getting the error

    "Cannot obtain the schema rowset "DBSCHEMA_TABLES_INFO" for

    OLE DB provider "SQLNCLI10" for linked server "LinkedServer".

    The provider supports the interface, but returns a failure code...

  • RE: disk space issue due to .ldf file.

    Steve Jones - Editor (5/5/2009)


    you need to stop shrinking it.

    Can you please explain why..? (bcse it needs to expand it everytime.?). I do shrink log regulerly. Please suggest me a...

  • RE: Restoring a BACKUP FILE to a Database --- Urgently?

    Let me know this one ---- Suppose my DB gets corrupted(after taking the backup)? For restoring the database which files i required to have? Is the backup file *.bak is...

  • RE: see the values passed to SP params internaly.

    It doesn't come in profiler when executed from APPLICATION (Col Fusion). That's the problem.

    What about SQL debugger in VS-2005/2008..?

    Thanks..

  • RE: Change Identity

    ...And once you make a column as identity, no need to supply any value for that column while inserting.....

  • RE: procedure to get all the permission of a user

    But this is not what i want. I just want to know all the rights granted to the user like create database or create table, etc when ID/Name is passed....

  • RE: Change Identity

    gaurav (4/29/2009)


    I had created a table with primary key named 'qId'.

    when it was created the identity was 'no' (false).

    because of that i am unable to insert any data...

  • RE: Instance name not appearing in server name combo box & Local servers tab

    You're doing this in Management Studio? Are you connecting to an instance on your local machine or on a network server? Try looking on the "Network Servers" tab rather than...

  • RE: SQL Query return value in a field if no results found..

    I am not sure....still you can try with below query.

    Hope GROP BY wont make any diference.

    SELECT [Job Date], NextBusinessDay, Branch, [Deliver Time], [Job Type]

    , [Company Name], [Site Location]

    , Equipment=case

    when ...

  • RE: Get value from tables

    but my requirement is

    like this:

    declare @var1 varcahr(300)

    set @var1=tablename from firsttable;

    exec('select column1'+'_'+'column2 from'+@var1')

    try the below query...

    declare @var1 varcahr(300)

    set @var1=tablename from firsttable;

    declare @qry nVarchar(500)

    Set @qry='select column1'+'_'+'column2 from'+@var1'

    exec(@qry)

    by the way it's...

  • RE: update all rows in table with data come from temporary table

    Update A

    Set A.statutSpecifique=B.dpStatut

    From table1 A

    Inner Join @tempTableStatutDp B On A.id=B.dpId

  • RE: Get value from tables

    select tablename from secondtable;

    select column1+'-'+column2 from tablename;( here table name is from above query).

    You can take the result of first query into a variable (@tbname).

    Make dynamic query for the...

  • RE: Query

    Why you want it that way ..?. If you want it for reporting purpose, you can do it in front end application.

  • RE: List out all the procedures which uses a particualr table.

    Thanks Chirag, this is wot exaclty I wanted.

    Cheers.

  • RE: Fine tuning Indexes.

    Thank you somuch Gila. Think this is I what I was looing for.

    I will go thru it..

Viewing 15 posts - 616 through 630 (of 707 total)