If anyone has a solution to export in a simple way all the rows of all the tables of a user in only one text file, for instance, please let me know how.
I think that it is not possible quickly with DTS when the number of tables is a little bit high ...
And I have not found how do it in a single command with BCP ...
As a Junior Administrator, may be I'm wrong ...
Thanks a lot ... and ... Happy New SQL SERVER Year !!!
This is my first time to deploy an asp.net2 web site. Everything is working fine on my local computer but when i published the web site on a remote computer i get the error "Failed to generate a user instance of SQL Server due to failure in retrieving the user's local application data path. Please make sure the user has a local user profile on the computer. The connection will be closed" (only in pages that try to access the database) Help pleaseee
How can I Export Database with foreing Key and primary key.
Operation is that SQL2005 Management Studio/Database/Tasks/Export Data
Before Version is SQL2000 we can Selected Copy Object and data between server and then Use Default Options click checked and Select Copy Index, Copy Foreing Primary key vs vs
But this options is not found in the SQL2005 Management Studio/Database/Tasks/Export Data wizard or I can't found it.
How can I export foreing Key and primary key with SQL2005 Management Studio/Database/Tasks/Export Data wizard.
How can I export about 100 users from one MSSQL7 server and import them into another MSSQL7.0 server. I would like to keep all of their properties intact.
Has anyone seen this before? I have users that can browse the reports on Report Manager, but when they attempt to Export them to Excel, it doesn't work. I've tried the export myself under two different logins (one is only Browser and the other has full rights) and both work fine. When I export, the second IE window opens and the Save/Open/Cancel dialog pops up as it should. When these two users attempt the same thing, no second window opens. The blue status bar at the bottom of their existing IE window fills to show progress and then they see "Done" in the status bar at the bottom. But nothing happens.
I've compared every IE configuration setting I can find with another machine that I'm testing on and can find no differences.
I'm using Reporting Services 2000 and I have a situation where I need to specify the file formats available to export. I know I can change the RSReportServer.config file to change these at a global level, but what I really need is to be able to configure these differently for different user groups. For example:
group 1 - has all available export formats available
group 2 - only has the ability to export to excel
group 3 - has no option to export to any format.
Is there a way for this to be done? If so, can anybody give me any pointers on how it can be done?
I'd recently posted a question about using SQL CE as a database server for a multi-user desktop app. I did some development and tested it, and it seemed to work fine. What I did was:
1. create a remoteable object that used SqlCe classes to perform read and write operations to an encrypted CE database.
public class RemData : MarshalByRefObject
{
public DataSet GetData()
{
//Read data }
public int AddData(DataSet data)
{ //Write data } }
2. hosted this object in a Remoting Server
TcpServerChannel channel = new TcpServerChannel(props, bp);
// Register the channel with the runtime remoting services
So, basically the CE DB is running in-proc with this Remoting Server. This is hosted on a regular P2 1GB box.
3. created client WinForms app to connect to this object through remoting with url tcp://myserverip/RM_RemData and distributed this client EXE to various machines within the intranet to execute the GetData and AddData methods
This seems to work perfectly fine and super fast, and i was also concurrently executing the above methods in loops of 100.
So what I don't understand is why most of the posts I read about multi-user scenario here and on the web are always discouraging people to only use CE for single-user desktop? As long as I use the SQL CE ONLY as a Data Store and all logic into my data layer such as the Remotabe Objects, will this be a feasible option for around 10-20 Users since CE allows 256 Connections anyway?
My other questions are with regards to programmatically Import/Export to and from CSV and Excel..is this supported or anything planned?
Would appreciate a detailed response..my product hangs in balance as i need some closure on this
I need to create an report from SSRS and then exported it in excel for the user. It has dynamic header/footer and dynamic excel sheet name. The developer told that it is not possible to have both the things dynamic.
Hi all, Can someone explain it to me why I am getting the following error when I try to connect SQL server express with .NET 2.0?
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.Data.SqlClient.SqlException: Login failed for user ''. The user is not associated with a trusted SQL Server connection.Here is my code and i am using windows authentication: <%@ Import Namespace="System.Data" %><%@ Import Namespace="System.Data.SqlClient" %> <% Dim connAkaki As SqlConnection Dim cmdSelectAuthers As SqlCommand Dim dtrAuthers As SqlDataReader connAkaki = New SqlConnection("Server=.SQLEXPRESS;database=akaki") connAkaki.Open() cmdSelectAuthers = New SqlCommand("select Firstname from UserTableTest", connAkaki) dtrAuthers= cmdSelectAuthers.ExecuteReader() While dtrAuthers.Read() Response.Write("<li>") Response.Write(dtrAuthers("Firstname")) End While dtrAuthers.Close() connAkaki.Close() %>
Hi all hope some one can help - please bear with me new to this Basically I have had to change pc's so I copied and pasted my ASPNET.MDF and LDF from my old pc to new PC including webpages/apps etc.. created. However now all I get is "Failed to generate a user instance of SQL Server due to failure in retrieving the user's local application data path """" Just don't understand what permissions the db should have, does it need to match the SQL Express owner...
I installed my asp.net 2.0 web application and sql express june editon on my windows 2003 server.When the application tries to reach the database i am getting the following error"Failed to generate a user instance of SQL Server due to failure in retrieving the user's local application data path. Please make sure the user has a local user profile on the computer. The connection will be closed."I can understand that it has something to do with user right but more than that I am pretty lost. Can anyone translate this error for me and give me some tips on what do to.I checked first the user running the sql express service and saw it was the NETWORK SERVICE user. I changed it to be the local system account but that did not make any difference. The application is running just fine on my local computer(Win XP sp2). This one has SQL express April edition though.
Hi all Recently i was asked to design and implement an On-line WebSite for a Shop Store.I decided to define some Category for this Shop's Products such as MP3-Players,Mobiles,Televisions,Monitors and so on....and then Assign each product to a certain Category.Something like Amazon.Com , So i designed my Category and Product Table as follow: Category Table----------------CatID int Primary-KeyCatDesc varchar(50) Product Table-------------ProductIDProductDescCatID After that i noticed that each category has its own Fields and Property and sometimes somecategories have common Fields for example , Price ,Color are two Common Property or Fieldsfor all Categories that i mentioned earlier But , Size is a special property for only[Monitor] or [Television] Categories and isn't useable for [Mice] or [KeyBoard] categories for example. So i Added a table for Keeping each category's Fields as follow: Category Fields Table---------------------FieldID intCatID intFieldDesc varchar(50)FieldType tinyint --> 0=Numeric 1=String 2=Boolean... After that i should save each Field's Value somewhere for each product so i added thefollowing Table(Product-Field-Value Table) for this purpose: Product-Field-Value Table-------------------------ProductIDFieldIDValue So far every thing is ok But i've faced with a new issue!!!.As you have realized so far , each productbelongs to certain category and each category has its own Fields List , in the other hand one category maybe has only 3 to 6 Fields but another Category might has 10 or more fields,So my problem here is when user wants to Add new product to Databse ,how should i get the Field's value for each product in an ASPX page ?in the other hand i'm dealing with a dynamic structure as you can see, so how should i Render the appropriate User Entries for getting Values of each product dynamically and then Saving these values in the Database? what Asp.Net Components should i use for this purpose? Could anyone help me? Thanks in advance.Kind Regards.
It looks like these options are only available in the SQL Server Management Studio? I installed SQL Server Management Express Studio and I can't even find the DTSWizard.exe on my machine.
Can you please help how I can import data from excel or where can I download the SQL Server Management Studio?
Background: In my current company the business users maintain a huge quantity of master data using excel. Then a series of SSIS jobs are edited and manually executed.
Goal: the challenge is to replace this process using MDS. One of the requested features is the possibility for the users to edit or insert new master data using the Web UI or the Excel Add-in and when they are done perform a merge of the master data in the target, in this case in the reporting DB.
The perfect solution for me is something like trigger the execution of a SSIS package to export the data from the subscription views to the reporting DB after the business rules are apply to a specific entity.
I Have a problem when copying data from one server to another in Management studio, I need to create and exact copy of the original because of primary key relationships,
Currently when I export the data the data will run through an insert type statement, which means that all PKs are reissued, rather than being duplicated from the original, How can I be sure that the data will be copied exactly how it is on one server to the other.
I want to publish a database on the web and enable to end users to click a button on the web page which will export the data from a table into an Excel spreadsheet which is then saved onto the user's machine.
Is this possible with SQL Server 7 (dts/sp/???) or do I need to use other technologies (maybe something like COM?)
Any pointers would be greatly appreciated (even better if u can provide coding hints/samples)
Hi, I need to export data from SQL Server 2000 table into XL Doc. These data have 4 creteria and need to be store each creteria in each sheet. This XL document should create new for everymonth. Any Advice Please?. Thanks, Ravi
I usually export data from my sqlserver db to a mdb file. I know there are different destinations like csv, txt, etc... But however, how can I export data in a sql script file???? I know i should do it with the sentence "insert into table" but i would like to know if the sqlserver has some option to do this without i have to write the sentence for each rows to insert. I know this option in Oracle.
Every day I have to export data from SQL server 2005 to Microsoft access. (with export data wizard) There is an automatic function that allow to overwrite the data? because every time that I do it the tables goes to add to the existing Access database. So every time before start the job I have to delete the file and create a newone.
Is it possible to use stored procedure to export data?-- I know u can use pcb utility and DTS pkg (sql 2000)/SSIS, but I want to see if there is some other options. If it can be done using stored procedure--please, let me know
Hello,I have some questions on my options available.I have to export some tables to csv files to enable another departmentto process the files. What I need is a way to do this in ms sqlthough a stored proc with quoted identifiers and column names asheads. I cannot figure out how to do this.Can anybody give me some options that would be the best options.I am using ms sql 2000.Thank you for your time.
I want to develop a small tool to export data from a database (SQL Server and Oracle). I have to export full tables or part of tables depending on an SQL statement.
My first idea is to use ADO. I open a recordset on the table (adCmdTable) and I call the Save method to save the recordset in a file. But, when I open the recordset, it takes a long time ... I suppose that ADO performs a " select * from table " to retreive all the lines ... It's too long for me because some tables have more then 10 millions of lines !!!
Do you known if it's possible to open a table without any "select" (just open and save) ? Do you kown others solutions ? I can develop with DO or ADO.Net.
I would like to export the database(with table schema and existing data). My database is a mdf file and i know that SQL Server 2005 Express Edition cannot do this. I would like to know if there are any FREE tools can export the table schema and existing data to a .sql file. OR SQL Server 2005 can do this? Thank you
Hi I am using CSV (comma delimeted file) for exporting data from sql server table to CSV and then import to sql server from the CSV. Now I have a problem, I could sucessfully export the data to CSV, but one of the field which has whole html for each product is giving me problem, It wouldnt save in one cell as for other data items in a record are. If I remove that field, the rest of records are exported okay, but with this one, it do export, but the data wouldnt go to one cell of the excel file and hence wouldnt work in importing to sql. I guess some tags in the string is creating problem plus also what should I do if the string already have comma as data, and we use comma as delimiting character. Any kind of help greatly appreciated
EDIT: Below is a sample of html thats already saved in one field but wouldnt come to one excel cell when exported to CSV... <P><TABLE class=content cellSpacing=0 cellPadding=2 width="100%" border=0><TBODY><TR vAlign=top><TD><STRONG>Product</STRONG></TD><TD>XXXX</TD></TR><TR vAlign=top><TD width="46%"><STRONG>XXXX</STRONG></TD><TD width="54%">XXXX </TD></TR><TR vAlign=top><TD><STRONG>XXXX</STRONG></TD><TD>XXXX</TD></TR><TR vAlign=top><TD><STRONG>XXXX</STRONG></TD><TD>up to 4MB/s</TD></TR><TR vAlign=top><TD><STRONG>XXXX</STRONG></TD><TD>XXXXX<TR vAlign=top><TD><STRONG>XXXX</STRONG></TD><TD>XXXX</TD></TR></TBODY></TABLE><TABLE class=content cellSpacing=0 cellPadding=2 width="100%" border=0><TBODY><TR vAlign=top><TD><STRONG>XXXXX</STRONG></TD><TD>XXXXX</TD></TR><TR vAlign=top><TD><STRONG>XXXX</STRONG></TD><TD>XXXX</TD></TR><TR vAlign=top><TD><STRONG>XXXX</STRONG></TD><TD>XXXXX</TD></TR></TBODY></TABLE><A href="http://www.xxx.xxx" target=_blank><BR><BR>xXXX</A><BR><BR>Â </P> Regards Mykhan
HiI am using SQL Server Management Studio Express and I noticed in my data I made a big mistake(effects every peice of data I have in my row) I need to grab all these cells so I can then do a find an replace on them all and fix my mistake. I tried to use find and replace in SQL Server Management Studio Express but it seems to not work on data in the files so I am wondering how do I export all this data out so it is in a notepad file and I can just find and replace from there?Thanks
Hi every body I have 2 databases called Tax and News There is a table in database Tax called table table1(id, Title,Content) There is a table in database News called table table2(id, Headline,Body) How can I copy(append) data from table1 to table2 with mapping Title -> Headline and Content -> Body Any answers would be appreciated.
Here's my process: 1. I have a form where someone enters certain criteria for some data… 2. The form than populates a record in a table with all the criteria… 3. I create a query based on the selected criteria for exporting…
How can I automate the process (maybe using DTS) where SQL server will automatically export the data for me using a stor proc? Create a file, populate the file etc…. or will I need to create an external App to do this?