• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

always problem for import file to server

Newbie Spellweaver
Joined
Jun 15, 2009
Messages
79
Reaction score
2
everytime i try to import file on server i got it messed up, i have try with items table, tryed with xls and csv file, both messed up my server, can anyone tell me how to do it? after 3 days Im still dont have success PLEASE help

thanks

Dogo - always problem for import file to server - RaGEZONE Forums
 
Newbie Spellweaver
Joined
Dec 4, 2008
Messages
33
Reaction score
0
I recommend you use Microsoft SQL Server 2000 instead of Window Server 2003.
Cuz, i'm success in import, export, editing anything on my server with it.
Ii haven't got any experience in using Window Server 2003 so i don't know how to solve ur problems xD
Srr for my bad eng.
 
Joined
Dec 22, 2004
Messages
513
Reaction score
162

QA Ex:
Code:
USE PS_GameDefs;
GO
BACKUP DATABASE PS_GameDefs
TO DISK = 'C:\PS_GameDefs.Bak'
   WITH FORMAT,
      MEDIANAME = 'PS_GameDefs',
      NAME = 'Full Backup of AdventureWorks';
GO

Other:
1 : SData -> ProductList.sql
2:
in QA example:
USE PS_GameDefs;
TRUNCATE TABLE [dbo].[ProductList]; --- CLEAR TABLE

3:
open and exec ProductList.sql

4:
-------------------------------------------------------
For online data edit tables:

-------------------------------------------------------
 
Back
Top