Click here to Skip to main content
16,005,697 members
Home / Discussions / Database
   

Database

 
AnswerRe: Linked-Server SQL Server 2000 Pin
Wendelius22-Jan-09 21:34
mentorWendelius22-Jan-09 21:34 
GeneralRe: Linked-Server SQL Server 2000 Pin
Indra PR22-Jan-09 21:56
Indra PR22-Jan-09 21:56 
GeneralRe: Linked-Server SQL Server 2000 Pin
Wendelius22-Jan-09 22:17
mentorWendelius22-Jan-09 22:17 
QuestionProblems with SQL Server 2000 connection Pin
Indra PR22-Jan-09 20:52
Indra PR22-Jan-09 20:52 
AnswerRe: Problems with SQL Server 2000 connection Pin
Wendelius22-Jan-09 20:57
mentorWendelius22-Jan-09 20:57 
GeneralRe: Problems with SQL Server 2000 connection Pin
Indra PR22-Jan-09 21:06
Indra PR22-Jan-09 21:06 
GeneralRe: Problems with SQL Server 2000 connection Pin
Wendelius22-Jan-09 21:24
mentorWendelius22-Jan-09 21:24 
AnswerRe: Problems with SQL Server 2000 connection Pin
Aman Bhullar22-Jan-09 21:17
Aman Bhullar22-Jan-09 21:17 
Indra PR wrote:
I've put the Connection.Close()


although, you have put close connection request after every command. Does your program make sure that connection.close() is executed every time.

I mean to say, If there is a error during the transaction, is close() method called.

try using code as
try
{
   Connection.Open();
   //Your Block
}
catch(Exception EX)
{
   //Exception handling code
}
finally
{
    Connection.Close();
}


One thing you should try checking is
1. When Your application starts giving the error reported, at that instance of time how many users are connected to your server and on the particular DB.

2. How many requests from the application are running in pool of DB
GeneralRe: Problems with SQL Server 2000 connection Pin
Indra PR22-Jan-09 21:40
Indra PR22-Jan-09 21:40 
GeneralRe: Problems with SQL Server 2000 connection Pin
Aman Bhullar23-Jan-09 2:27
Aman Bhullar23-Jan-09 2:27 
GeneralRe: Problems with SQL Server 2000 connection Pin
Indra PR23-Jan-09 19:30
Indra PR23-Jan-09 19:30 
Questionactually i have a database table have four fields rnkid, rnkartid,rnkuserid and rnk marks i want sum all the marks which have same rnk art id . pls hel tell how Pin
anujanujanuj22-Jan-09 17:52
anujanujanuj22-Jan-09 17:52 
AnswerRe: actually i have a database table have four fields rnkid, rnkartid,rnkuserid and rnk marks i want sum all the marks which have same rnk art id . pls hel tell how Pin
Wendelius22-Jan-09 18:12
mentorWendelius22-Jan-09 18:12 
QuestionT-Sql programming in Sql server 2005 Pin
maheesh22-Jan-09 17:33
maheesh22-Jan-09 17:33 
AnswerRe: T-Sql programming in Sql server 2005 Pin
Wendelius22-Jan-09 18:14
mentorWendelius22-Jan-09 18:14 
QuestionTransfer the data from xls sheet to sqlserver using SSIS Pin
bruze22-Jan-09 3:20
bruze22-Jan-09 3:20 
AnswerRe: Transfer the data from xls sheet to sqlserver using SSIS Pin
Wendelius22-Jan-09 3:30
mentorWendelius22-Jan-09 3:30 
AnswerRe: Transfer the data from xls sheet to sqlserver using SSIS Pin
Jon_Boy22-Jan-09 3:56
Jon_Boy22-Jan-09 3:56 
QuestionHow do I Backup all the Databases on Server 1 and Append Restore the Backup on Server 2 so it gets all the changes in the First Server, I will do this with 7 Servers in Progression so they Loop Every 15 Minutes. Pin
BobClarkSQL22-Jan-09 3:15
BobClarkSQL22-Jan-09 3:15 
AnswerRe: How do I Backup all the Databases on Server 1 and Append Restore the Backup on Server 2 so it gets all the changes in the First Server, I will do this with 7 Servers in Progression so they Loop Every 15 Minutes. [modified] Pin
Wendelius22-Jan-09 3:27
mentorWendelius22-Jan-09 3:27 
GeneralRe: How do I Backup all the Databases on Server 1 and Append Restore the Backup on Server 2 so it gets all the changes in the First Server, I will do this with 7 Servers in Progression so they Loop Every 15 Minutes. Pin
BobClarkSQL22-Jan-09 4:00
BobClarkSQL22-Jan-09 4:00 
GeneralRe: How do I Backup all the Databases on Server 1 and Append Restore the Backup on Server 2 so it gets all the changes in the First Server, I will do this with 7 Servers in Progression so they Loop Every 15 Minutes. Pin
Wendelius22-Jan-09 4:08
mentorWendelius22-Jan-09 4:08 
GeneralRe: How do I Backup all the Databases on Server 1 and Append Restore the Backup on Server 2 so it gets all the changes in the First Server, I will do this with 7 Servers in Progression so they Loop Every 15 Minutes. Pin
BobClarkSQL22-Jan-09 4:19
BobClarkSQL22-Jan-09 4:19 
GeneralRe: How do I Backup all the Databases on Server 1 and Append Restore the Backup on Server 2 so it gets all the changes in the First Server, I will do this with 7 Servers in Progression so they Loop Every 15 Minutes. Pin
Wendelius22-Jan-09 4:35
mentorWendelius22-Jan-09 4:35 
GeneralRe: How do I Backup all the Databases on Server 1 and Append Restore the Backup on Server 2 so it gets all the changes in the First Server, I will do this with 7 Servers in Progression so they Loop Every 15 Minutes. Pin
BobClarkSQL22-Jan-09 4:40
BobClarkSQL22-Jan-09 4:40 

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.