DTS Database Transfer - Slowing Down The Server

May 29, 2001

We have a process here where a ~45Gb is copied from DB1 to DB2 (both on the same server) using the Export Data wizard and choosing the "Transfer objects and data between SQL Server 7.0 databases" - All the defaults are left as is.

Under 6.5 this method took around 24 - 26 hours, now with SQL 7.0 (SP3) it takes about 16 hours. That's great execpt towards the end of the copy it seems to be hogging most of the server resources - although the processors aren't mazed out.

Users of the other databases are having queries take 5+ mins when they normally come back in < 5 seconds. As soon as the copy finishes there query time return to 'normal'.

Anyone any ideas on where to start looking or how to analyse this problem.

Thanks in advance.

Rob Elmes

View 2 Replies


ADVERTISEMENT

CLR Project Slowing Down SQL Server

Dec 4, 2006

I'm running into an issue when developing a clr project. I open the project to make changes and apparently it hoses up the sql server that I'm connecting to. I'm opening the CLR Project from a mapped drive on another computer. I can't figure out why just opening up the project causes the slow down. Any ideas.

Thanks,
Josh

View 1 Replies View Related

PageIOLatch Slowing Server To A Halt

Oct 2, 2007

We're having problems with our SQL 2000 SP3 standard server (on Win 2k3). Our quasi-data-warehouse application does data processing on feeds of approximately 7 million records. Once the data is loaded in the queries against that data and updates against large tables will often wait with PAGEIOLATCH_SH contention. To give an example, over 7 million rows I was testing something out in development and issued: UPDATE <Table> SET <VarcharColumn> = null, which took forever (over an hour) with the PAGEIOLATCH problem....meanwhile someone else using another database was completely blocked from making an update during that time. It seems like something is very wrong.

The server has 4 drives spinning at 15k rpm with some sort of a high end raid controller, so I'm sure it's not a slow i/o subsystem.

Has anyone experienced this behavior before? Is this an issue that's resolved in 2000 SP4?

Thanks in advance,
-Mark

View 3 Replies View Related

Sql Server 2000 Randomly Slowing Down

Jan 22, 2008

Hello there,

I have a SQL Server 2000 with a dozen of databases. The databases are rather small (all sum up to 10 GB).

The entire server gets extremelly slow from time to time (lasting a few days when it happens and suddently coming back to normality). A profiler trace doesn't show anything strange (besides a lot of SQL Agent entries).

I pretty much tried to isolate every single application that makes use of the databases in that server and see if it was the cause of the problem, but I couldn't find any correlation.

I know the computer where this server runs is quite fragmented. Is there any way I could make sure this is the cause of my performance issues?

I don't know if this might help, but once the server simply went down for some 3 hours, and I wasn't able to bring it up in any way. It eventually started working again by itself. The only thing I did in the meantime was to run DBCC CHECKDB a few times, always getting the response "No errors found on the database".


Any hint on that?

View 3 Replies View Related

Problem With Server Slowing Down Because Of High Amounts Of Users On At The Same Time!

Jan 24, 2008

The server being used is a Intel Xeon E5310 Clovertown 1.6GHz 2 x 4MB L2 Cache Socket 771 80W Quad-Core 2U Passive Processor.

The problem is that this server is slowing down everytime about 1000 users log into a forum which the server is running. I think that the server should be able to handle this many users with no problems but I am not sure if that is the case.. The problem is probably something to do with the SQL of the server I am guessing. The server is not mine but I want to help the owner of the server as well as the users who are trying to access this forum but cant because of this server issue. If I was able to get the SQL would I be able to fix this problem? I doubt you need this but the server url is www.smashboards.com

I am fairly new to servers and have never really set one up myself yet. Forgive me for my lack of knowledge about them.

-Thank you!

View 1 Replies View Related

SQL Server 2000 Query Slowing Down In SQL Server 2005

Aug 14, 2006

Hi everybody,

I have a query slower in SQL Server 2005 than in SQL Server 2000. I have a database in SQL 2000, I put it on the same server, but with SQL 2005 and the query take 5 seconds instead of 0 seconds. The DB compatibility is SQL Server 2000 (I tried with 2005 and result is the same). Execution plan seems right and I tried to change some DB options without results. It is weird, when I remove left join on MandatsEx, it take 2 seconds. The view currentEmployeeLevelHistoric returns 45 000 rows and mandatsex has 0 rows.

Here is the sample:

Select ls.EmployeNiveau.pk_EmployeNiveauID as NoNiveau,
IsNull(nullif(ls.Traduction.Description, ''), ls.TraductionDefaut.Description) + ' (' +
ls.currentLevelHIstoric.NoNiveau + ')' As Nom,
ls.currentEmployeeLevelHistoric.DebAssign As DateAssignationDebut,
ls.EmployeNiveau.assignmentReason As AssignmentReason,
ls.currentEmployeeLevelHistoric.FinAssign As DateAssignationFin,
ls.MandatsEx.noDossier, ls.MandatsEx.pk_MandatID,
'' As Period, ls.currentEmployeeLevelHistoric.NiveauPrincipal,
ls.currentEmployeeLevelHistoric.pk_emplNiveauHisto_Id,
ls.EmployeNiveau.fk_NiveauID_Niveaux, ls.EmployeNiveau.No_Ent_leg,
IsNull(nullif(TradPere.Description, ''), TradDefautPere.Description) + ' (' + NiveauPere.NoNiveau
+ ')' As NomSup,
ls.EmployeNiveau.No_Ent_leg + ls.EmployeNiveau.no_divisio + ls.EmployeNiveau.no_sec_eco +
ls.EmployeNiveau.no_etabli + ls.EmployeNiveau.no_mat as employeeScope,
case when ls.mandatExternalisation.fk_mandatID_MandatsEx is null then 2 else 1 end as
ContractCategory
From ls.currentEmployeeLevelHistoric
Inner Join ls.EmployeNiveau on
ls.currentEmployeeLevelHistoric.pk_EmployeNiveauID = ls.EmployeNiveau.pk_EmployeNiveauID
Inner join ls.currentLevelHistoric On
ls.EmployeNiveau.fk_NiveauID_Niveaux = ls.currentLevelHistoric.fk_niveauID_niveaux
Left Outer Join ls.TraductionDefaut On
ls.currentLevelHIstoric.fk_TraductionID_TraductionDefaut = ls.TraductionDefaut.pk_NoTraduction
Left Outer Join ls.Traduction On
ls.TraductionDefaut.pk_NoTraduction = ls.Traduction.No_Traduction and
ls.Traduction.Langue = 1
Left Join ls.MandatsEx on
ls.EmployeNiveau.fk_MandatID_MandatsEx = ls.MandatsEx.pk_MandatID
Left Join ls.mandatExternalisation on
ls.MandatsEx.pk_MandatID = ls.mandatExternalisation.fk_mandatID_MandatsEx
left Join ls.Niveaux as NiveauPere on
NiveauPere.niveauID = ls.currentLevelHIstoric.supId
Left Outer Join ls.TraductionDefaut As TradDefautPere On
NiveauPere.fk_TraductionID_TraductionDefaut = TradDefautPere.pk_NoTraduction
Left Outer Join ls.Traduction As TradPere On
TradDefautPere.pk_NoTraduction = TradPere.No_Traduction and
TradPere.Langue = 1
Where ls.EmployeNiveau.fk_EmploID_Emplos = 345158 and (convert(varchar,
ls.currentEmployeeLevelHistoric.DebAssign, 112) <= '20060802' and
(ls.currentEmployeeLevelHistoric.FinAssign is null or
convert(varchar, ls.currentEmployeeLevelHistoric.FinAssign, 112) >= '20060802'))


Thank you

Steve Gadoury

View 13 Replies View Related

Transfer Data From A Foxpro Database File To Sql Server Database

Jun 11, 1999

i have a old database in foxpro and it has to be converted to sql server 6.5 database . the table in the foxpro has been broken into more than 1 tables in the sql server . so how can i transfer the data from 1 foxpro table to different tables in sql server 6.5.
vineet

View 1 Replies View Related

Database Transfer To New Server

Dec 5, 1999

Hi

I was wondering if any one out there could help me out here. We are using SQL Server 7.0, we have purchase a new server, what will be the best procedures to transfer the current database to the new server? I look forward to hearing from anyone, also I wish you all a Merry Christmas & Happy New Year.

I shall remain.

E. Warden

View 3 Replies View Related

Database Transfer From One Sql Server To Another

Dec 30, 1999

Hi,
I am new to the database concepts, maybe my questions are very basic.
I transfered data from one sql server to another thru object/database transfer. The transfer was successful, ie.,
all the data was present in the new server too. I am using an application with ASP as front end and SQL server 6.5 as back end.
So i am able to all new records, delete them, update them thru my ASP programs. But, i am not able to update the records
which where transfered from the old server. I hope some one of can help me, as i said earlier i am new to databases,
so give me a detailed solution.

Thanks,
Karthik narain

View 2 Replies View Related

Transfer MS SQL Server's Database From 1 PC To Another PC

Sep 2, 2005

May I know how to transfer Microsoft SQL Server's database from 1 PC to another PC?
What I doing now is export the Microsoft SQL Server database to Microsoft Access format, then import it to the SQL Server of another PC.
But the field type have to reset again.

Any method that the table's field type is same after transfer to new PC??

*field type = int, varchar etc

Thx~

View 3 Replies View Related

How Can I Transfer Sql Database To Server?

May 10, 2007

there is applications which were written in FoxPro. Recently it has been redone in SQL.
How can I check that Whether their server designated to host the database is ready and fully up to spec on revs and patches,If not how and who can bring it up.
and How can I determine what else needs to be addressed to ensure a smooth transition and implement?
Define ongoing maintenance requirements.

View 2 Replies View Related

How Do You Transfer A Database To SQL Server 05?

Dec 7, 2005

On the web site for MS SQL Server 05 Express the description at the top of the page says, "Transfer any database created in SQL Express to other editions of SQL Server 2005." http://msdn.microsoft.com/vstudio/express/sql/powerful/
How do you transfer a database from SQL Express to SQL Server 2005?
I am creating a data-driven web site using Visual Web Developer 05 Express, SQL Server 05 Express, and MS SQL Server Management Studio Express. My host uses SQL Server 2005, ASP.net 2.0, and FrontPage extensions.
Thanks for your help.

View 4 Replies View Related

How Do You Transfer A Database From SQL Express To SQL Server 2005?

Dec 7, 2005

Hello,
On the web site for MS SQL Server 05 Express the description at the top of the page says, "Transfer any database created in SQL Express to other editions of SQL Server 2005." http://msdn.microsoft.com/vstudio/express/sql/powerful/
How do you transfer a database from SQL Express to SQL Server 2005?
I am creating a data-driven web site using Visual Web Developer 05 Express, SQL Server 05 Express and MS SQL Server Management Studio Express. My host uses SQL Server 2005, ASP.net 2.0, and FrontPage extensions.
Thanks for your help.

View 8 Replies View Related

Transfer Data From Access Database To SQL Server

Sep 20, 2006

Hi,

I'm new to SQL server, and I would like to achieve below tasks. Kindly
provide brief guildline on how to achieve these:

1.) I have managed to schedule job in SQL server to download the access database from remote server.
2.) Second, I would like to transfer all the data from my acccess database to my SQL tables.

May I know how do I achieve my task no 2???? I believe I need to write some script (procedure) in order to achieve this.

pls advise....

View 2 Replies View Related

SQL Server 2000 Security When Transfer Database

Nov 27, 2006

Hi
I'm going to put my database in setup file that I've been ready before.
My Software could be use from database after installing in every system , but other users won't be able to access to data or structure of database , even with adding of database to SQLServe Enterprise Manager .
How Should I can do about this ?
Tanks very much

View 3 Replies View Related

How Can I Transfer A Database From Access To Sql Server 2000?

Oct 6, 2006

Hy ,

How can i transfer a database from Access to Sql Server 2000?

Exactly : i want to transfer a .mdb into .mdf, and i want to keep the structure of .mdb, a structure which have tables, queries, macros, modules... When i start the transfer with Data Transformation Services ( DTS- Import Data ) , i can see that DTS shows me only tables and queries. At the end of transfer, in my .mdf database, on server, i have only tables, without queries, macros, modules.

My question is how can i transfer the queries and macros ( exactly how are in .mdb ) to .mdf database?

Thanks in advance for any advice..

Emanuel.

View 6 Replies View Related

Transfer Database Created In SQL Express To SQL Server 2005

Dec 2, 2005

Using VWD 05 Express & SQL Server 05 Express, how do I transfer my database to my host that is using SQL Server 2005.
On the SQL Server express web site http://msdn.microsoft.com/vstudio/express/sql/powerful/ one of the features listed for SQL Server 05 Express is: Transfer any database created in SQL Express to other editions of SQL Server 2005.
Thanks

View 7 Replies View Related

Transfer Access Database Into SQL Server 2005 Express

Feb 17, 2006

Hi,

A question regarding SQL Server 2005 Express edition. Is it possible to export Access databases into SQL databases without using programming (e.g. using SQL and programming languages)?

I understand you can do this with DTS, but the Express edition seems not have DTS.

Many thanks

Yuelin



View 15 Replies View Related

DB Acess Slowing Down Drastically

Jun 3, 2003

hello,
i am getting a problem

suddenly the DB in Sql2000 has slowed down drastically
and when i have checked the logs the error is

Supersocket info:[spn register]:error 1355

pls. help me

pavan

View 2 Replies View Related

How To Transfer Database From 6.5 Server To 7.0 Server?

Aug 28, 2000

I have a database that I want to move to a SQL 7.0 machine that was designed and resides on a 6.5 machine. How can I move it and convert it to 7.0?

View 2 Replies View Related

Order By Is Slowing Page Load

Mar 14, 2007

hi guys,
the following test script works fine and displays a list of cars from the fairly small database, but if I specify the sort order in the querystring, the page takes ages to display and usually times out. Can someone look over it please and tell me where I can fine-tune it for performance or redundant code?
thanks
M


<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<%
Dim oRS,oConn,myOrder,strSQL

Set oRS = Server.CreateObject("ADODB.Recordset")
Set oConn = Server.CreateObject("ADODB.Connection")
'next, a couple of test lines to prevent timeout (seems to have no effect)
oConn.CommandTimeout = 0
Server.ScriptTimeout = 0

Set strOrder = Request.QueryString("Order")

oConn.ConnectionString = "Provider=MSDASQL;DRIVER=SQL Server;SERVER=address;UID=userID;PWD=password;DATA BASE=name"
oConn.Open
%>

</head>

<body>
<%
strSQL = "Select make,model,price from vehicles where cat = 'car' AND active = 'yes'"
if strOrder <> "" then
strSQL = strSQL & " ORDER BY " & strOrder
end if

oRS.Open strSQL, oConn, 2, 3

oRS.moveFirst
Do while not oRS.eof

make = oRS("make")
model = oRS("model")
price = oRS("price")


%>
<%=make%> <%=model%> <%=price%><BR>
<%
oRS.MoveNext
loop

oRS.close
set oRS= nothing
oConn.close
set oConn=nothing
%>
</body>
</html>

View 14 Replies View Related

Indexes Slowing Down BULK INSERT

Jul 20, 2005

I've been doing some experiments with speeding up copying tables ofapproximately 1 million rows between databases using BCP and BULK INSERT.I noticed that the total time for removing the indexes (non-clustered) andthen recreating them after the BULK INSERT was significantly less than justdoing the BULK INSERT with the indexes left there, even though I specifiedTABLOCK.I would have expected SQL Server not to update the index until the insertcompleted (given the table lock) and so removing the indexes would have noeffect. Can anyone explain why removing the indexes should speed it up?This is on SQL Server 7.CheersDave

View 2 Replies View Related

Massive UPDATE And SELECT TOP 1 QUERIES, Slowing Down...

Apr 10, 2007

Background

SQL Server 2005 Standard 9.0.1399 64bit

Windows 2003 64-bit

8gb RAM

RAID-1 70gb HD 15K SCSI (Log Files, OS)

RAID-10 1.08TB HD 10K SCSI (Data Files)

Runs aproximately _Total 800 Transaction/Second

We deliver aproximately 70-80 million ad views / day



8 Clustered Windows 2003 32-bit OS IIS Servers running Asp.net 2.0 websites

All 8 servers talking to the one SQL server via a private network (server backbone).



In SQL Server Profiler, I see the following SQL statements with durations of 2000 - 7000:



select top 1 keywordID, keyword, hits, photo, feed from dbo.XXXX where hits > 0 order by hits



and



UPDATE XXXX SET hits=1906342 WHERE keywordID = 7;



Where the hits number is incremented by one each time that is selcted for that keyword ID.



Sometimes these happen so frequently the server stops accepting new connectinos, and I have to restart the SQL server or reboot.



Any ideas on why this is happening?



Regards,

Joe







View 6 Replies View Related

Stored Proc Parameters Slowing Down Execution Majorly!

Jan 15, 2008

Hello:

Interestingly enough, I haven't come across this before. I have a SQL stored procedure which takes four parameters; periodstartdate (datetime), periodenddate (end time), hsgradyearstart (int), hsgradyearend (int)


[dbo].[CalculateActivityTotal]

-- Add the parameters for the stored procedure here

@periodstartdate datetime = '2007-01-01',

@periodenddate datetime = '2007-01-08',

@hsgradyearstart int = 1900,

@hsgradyearend int = 2007
AS...

If I run the stored procedure and pass the parameters using EXEC or

sp_executesql "CalculateActivityTotal '2008-01-04 12:00:00', '2008-01-11 12:00:00', 1900, 2008"

the stored proc takes well over ten minutes to run (it does a bunch of aggregation). If I modify the stored procedure to take no parameters, however, and I hardcode the dates in the stored proc using declare and set then it runs in 13 seconds. What could be causing my problem and how I can I go about resolving this? I need to pass the parameters via reporting server. Thanks!

View 2 Replies View Related

Data Transfer From Collation CI Database To A CS Database

Jul 20, 2005

I have a client who was installed improperly on a Case InsensitiveCollation SQL system and have been working with this system for over ayear. For them to move forward in application software versions, theywill need to be reinstalled on a Case Sensitive SQL system. I waswondering if anyone has tried this and was willing to provideinformation that may be of assistance? I have tried various someoptions within DTS but without success.

View 1 Replies View Related

MS SQL Server - Transfer Database From Non-unicode To Unicode

Jun 29, 2006

Any one know the process of transfering the database from non-unicode to unicode. Coz I like to transfer the data from english to hebrew.

View 1 Replies View Related

Transfer Database

Mar 26, 2007

I had Sql Server 2005 installed on my machine, with that I am working on Visual Studio 2005. I just need to add an existing database into the app_data folder. The database is existing in the Sql server, it contains 180 tables so I cannot manually copy that tables in the app_data folder. for that is there any another way to copy all the tables into the database into the folder app_data with the data in the table.
Thanks & Regards
Girish Nehte

View 4 Replies View Related

How To Transfer Database

Jan 16, 2006

I am trying to transfer my database from my computer where built it to another computer.  I have microsoft SQL server 2005 CTP on my computer and the other computer has Microsoft SQL server. 
Does anyone have any suggestions on how to do this???  I cannot find much info on SQL server 2005 CTP.   I have found some info about the copy database wizzard, but I cannot find that in CTP. 
Please any ideas or info would be wonderful
Thanks
Sarah

View 6 Replies View Related

Transfer Database From SQL 7 To 6.5

Aug 26, 2000

Anybody has idea how to transfer database from SQL Server 7 to 6.5? I know how to migrating/upgrading database from 6.5 to 7.0, but from 7.0 to 6.5
seems not an easy one. DTS only transfer tables and data but not trigers,
SPs, etc. The script generated in 7 can not be applied to 6.5. Any ideas?
Thanks in advance.

View 4 Replies View Related

Database Transfer For 6,5 To 7

Aug 29, 1999

i transferred the database on 6.5 SQL server to 7.0 , only the tables were transfered . none of the stored procedures or triggers were transfered.
how can one transfer these objects also.

View 1 Replies View Related

Transfer 40 GB Of Database

Apr 3, 2001

What will be the best way to transfer 40 GB using DTS.

Thank you,
john

View 2 Replies View Related

Transfer Database

Sep 13, 2004

Transfering DB from one collation in SQL 2000 to a different collation in SQL 2000.

We need to transer our databases from codepage 850 to 1252.

We have succesfully transfered all objects and data EXCEPT stored procedures and triggers using the "Import/Export Data Wizard." We then scripted all the stored procedures and triggers from the cp850 database and installed them into the cp1252 DB. However for quite a few stored procedures and triggers we get the error "Cannot resolve collation conflict for equal to operation." I have tried scripting the sp's with the option 'Only script 7.0 compatible features' on and off but get the same errors each time.

Can anyone help?

Thanks

Paula.

View 8 Replies View Related

Transfer Database

Mar 5, 2007

reena writes "how do i transfer my database with data from local machine to server..should i generate scripts and then take back up and dump...or can i directly import...what is the difference"

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved