Click here to Skip to main content
16,011,374 members
Home / Discussions / Database
   

Database

 
Question"oledbexception:could not update currently locked". Pin
tomertro14-Jun-07 1:03
tomertro14-Jun-07 1:03 
QuestionTo save a file in a SQL 2005 Pin
Saranya B13-Jun-07 23:44
Saranya B13-Jun-07 23:44 
AnswerRe: To save a file in a SQL 2005 Pin
Colin Angus Mackay14-Jun-07 1:01
Colin Angus Mackay14-Jun-07 1:01 
GeneralRe: To save a file in a SQL 2005 Pin
Giorgi Dalakishvili14-Jun-07 1:53
mentorGiorgi Dalakishvili14-Jun-07 1:53 
QuestionTo get the data from another table... Pin
codingrocks13-Jun-07 23:32
codingrocks13-Jun-07 23:32 
Questioninvalid objects Pin
manni_n13-Jun-07 22:16
manni_n13-Jun-07 22:16 
AnswerRe: invalid objects Pin
Sylvester george13-Jun-07 22:39
Sylvester george13-Jun-07 22:39 
AnswerRe: invalid objects Pin
Colin Angus Mackay13-Jun-07 23:07
Colin Angus Mackay13-Jun-07 23:07 
manni_n wrote:
its giving error that invalid object ' authors'.
how this error can be resolved???


If you are just learning a better question would be "What does the error mean?" so you can understand what it means in the future.

SQL Server has a number of database objects. These include tables, views, stored procedures, functions and so on.

You can get a list of all object in the database by typing

SELECT * FROM sysobjects

The message "invalid object" indicates that the object either does not exist, or it is the wrong type of object for the context in which you are trying to use it.

In this case you refer to a table object in the SELECT statement that does not exist (there may be another object in the system called authors, but that will be a different type of object, or be used in a different context.


Upcoming events:
* Glasgow: Mock Objects, SQL Server CLR Integration, Reporting Services, db4o, Dependency Injection with Spring ...
* Reading: Developer Day 5

Never write for other people. Write for yourself, because you have a passion for it. -- Marc Clifton


My website

QuestionHow to return cursor from stored proc?? Pin
FishiFishi13-Jun-07 22:08
FishiFishi13-Jun-07 22:08 
AnswerRe: How to return cursor from stored proc?? Pin
Tirthadip13-Jun-07 22:36
Tirthadip13-Jun-07 22:36 
AnswerRe: How to return cursor from stored proc?? Pin
N a v a n e e t h14-Jun-07 23:22
N a v a n e e t h14-Jun-07 23:22 
QuestionHow to get top n records Pin
FishiFishi13-Jun-07 22:00
FishiFishi13-Jun-07 22:00 
AnswerRe: How to get top n records Pin
Tirthadip13-Jun-07 22:32
Tirthadip13-Jun-07 22:32 
Questionhow to call a webservice from stored procedure in SQL Server2000? Pin
chronossu13-Jun-07 21:27
chronossu13-Jun-07 21:27 
Questioncreate alias and tables on my pc and copy them with setup or create them in installed pc Pin
upamir13-Jun-07 21:19
upamir13-Jun-07 21:19 
QuestionText datatype not exceeding 8000 characters Pin
Rajiya13-Jun-07 20:51
Rajiya13-Jun-07 20:51 
AnswerRe: Text datatype not exceeding 8000 characters Pin
Krish - KP13-Jun-07 23:21
Krish - KP13-Jun-07 23:21 
AnswerRe: Text datatype not exceeding 8000 characters Pin
Mike Dimmick14-Jun-07 9:20
Mike Dimmick14-Jun-07 9:20 
GeneralRe: Text datatype not exceeding 8000 characters Pin
Rajiya17-Jun-07 18:59
Rajiya17-Jun-07 18:59 
QuestionQuery doubt.....(Urgent need plz hlp me), Pin
Member 387988113-Jun-07 17:55
Member 387988113-Jun-07 17:55 
AnswerRe: Query doubt.....(Urgent need plz hlp me), Pin
andyharman13-Jun-07 23:01
professionalandyharman13-Jun-07 23:01 
GeneralRe: Query doubt.....(Urgent need plz hlp me), Pin
Member 387988113-Jun-07 23:42
Member 387988113-Jun-07 23:42 
AnswerRe: Query doubt.....(Urgent need plz hlp me), Pin
Andy *M*13-Jun-07 23:15
Andy *M*13-Jun-07 23:15 
QuestionHow to display duplicate values in a table ? Pin
ahmedalisha13-Jun-07 17:30
ahmedalisha13-Jun-07 17:30 
AnswerRe: How to display duplicate values in a table ? Pin
Krish - KP13-Jun-07 17:35
Krish - KP13-Jun-07 17:35 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.