|
Hy
I have 2 databases and one table for each of database. The tables have the same structure. One of them is populate and I want to copy the contain of this to the second table. I want to ask if this is possible with DTS.
thx
|
|
|
|
|
Yes, And You can check the (DTS Export/Import Wizard) section of this article[^].
|
|
|
|
|
But I want to do that with C#
|
|
|
|
|
mihksoft wrote: But I want to do that with C#
Check this link[^]
|
|
|
|
|
You can do this with DTS - however I would advise just writing a stored procedure or an adhoc script to do a select from one table to insert into the other.
The reason I mention this is that DTS packages with all their VBScripting etc can hide a lot of their functionality.
From a maintenance point of view this can sometimes make it very difficult to see what is going on.
One more issue is this - SQL Server 2000 DTS packages don't like temporary tables in their data pumps(I don't know about 2005), you can use them but you have to be wily in how you use them.
You always pass failure on the way to success.
|
|
|
|
|
i write like this:
SELECT *
FROM TB_ANGEL
ORDER BY angel ASC
but i want not only query by order, i also want update the table by order
thanks a lot
wuhuaiji
|
|
|
|
|
Records in the table are physically sorted in the order of the Primary key Column by default. You can't update the order of the records programmatically.
Regards - J O N -
|
|
|
|
|
Actually they are physically sorted in the order of the clustered index information - that's what 'clustered index' means. However, it is the default to build the index supporting the primary key as the clustered index. Tables without a clustered index are not sorted and are referred to as 'heaps'. Specific rows in a heap are referred to internally using row identifiers which give the physical location of the row, but this information isn't available to clients.
If you wish to update a specific row, you need to include some kind of row identifier within the table such that each row has its own identifier.
SQL Server 2005 does provide the RANK function which might prove helpful for updating an ad-hoc query.
DoEvents : Generating unexpected recursion since 1991
|
|
|
|
|
thanks a lot
wuhuaiji
|
|
|
|
|
hi
How to Convert a project which is using database as sql 2000 and now i want to convert this project which uses sql 2005 using asp.net.
Can any one help.
mallika
|
|
|
|
|
If you run your DB Scripts on a SS2005 DB, or import your existing DB into it, odds are high it will just work.
Christian Graus - Microsoft MVP - C++
"I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
|
|
|
|
|
how can somebody use the while loops in the stored procedure.the problem is i have ten records and one by one , i have to access all the 10 record .
How should i do it?
Soniagupta1@yahoo.co.in
Yahoo Messenger Id = soniagupta1
|
|
|
|
|
If you want to process data row by row then you will need to use cursors but generally they are slower then set based solution so you should avoid them
|
|
|
|
|
Posting more details can help us helping you,
Do you have these records in local or temp table?
Why do you want to access them sequentially?
|
|
|
|
|
Using click once i can update my application on the users machine easily, but when i make database changes, i need the database to also be updated...is there a way to integrate SQL Server 2005 into the click once process without trashing the users existing data?
Thanks in advance for any help!
--
"Keyboard not found. Press < F1 > to RESUME. "
Source unknown (appears in many common BIOSes as a real error message)
|
|
|
|
|
Hi.
For the last 14 days i have been struggling with design pattern (T-SQL / Tables) for cascading product variants in a E-Commerce solution ("value-pairs pattern" / "diamond pattern"). I did find this DB diagram from IBM (http://publib.boulder.ibm.com/infocenter/wchelp/v5r5/topic/com.ibm.commerce.developer.doc/refs/rdmattribute.htm), which seams to be a good table design.
My problem is, that i cant figure out how, to make the SELECT statement for each cascading selection. Attributes should be selected in a specified order, each dropdown below is disabled until the previous selection is made.
Table design is like this:
"Product"
"ProductAttribute" (Relates each combination (T-Shirt, Small & Red) to a ProductID ..... AttributeID > ProductID)
"Attribute" (Relates "AttributeType" and "AttributeValue" together)
"AttributeType" (Type, Size, Color)
"AttributeValue" (T-Shirt, Jeans, Jacket, Small etc)
If i have 3 drop downs, with the following options:
Dropdown #1 (Type): T-Shirt, Jeans, Jacket
Dropdown #2 (Size): Small, Medium, Large, Extra Large etc.
Dropdown #3 (Color): Red, Green, Blue, Purple etc.
When the user selects a Type, Dropdown #2 is enabled and populates with possible values for Size. The problem is, how to make a T-SQL that only selects the available sized with the type "T-Shirt".
There is not limitation on how many Attribute each product can have. So a product could have X amount to attribute selections (dropdowns).
Thanks in advance
mm98 - Denmark
|
|
|
|
|
A SELECT statement that utilizes a number of correlated subqueries should solve your problem.
Something like:
SELECT DISTINCT AttributeType, AttributeValueID
FROM Attribute
INNER JOIN AttributeType
ON Attribute.AttributeTypeID = AttributeType.AttributeTypeID
WHERE AttributeType.AttributeType = 'Size'
AND EXISTS
(
SELECT TOP 1 *
FROM ProductAttribute
WHERE AttributeID = Attribute.AttributeID
AND EXISTS
(
SELECT TOP 1 *
FROM ProductAttribute AS ProductAttribute1
INNER JOIN Attribute
ON ProductAttribute1.AttributeID = Attribute.AttributeID
INNER JOIN AttributeValue
ON Attribute.AttributeValueID = AttributeValue.AttributeValueID
WHERE ProductAttribute1.ProductID = ProductAttribute.ProductID
AND AttributeValue.AttributeValue = 'T-Shirt'
)
)
Hope this helps
Paul Marfleet
|
|
|
|
|
Hi all ,
Is it possible to use Windows Authentication Mode for SQL Server in workgroup environment?
Thanks in advance .
|
|
|
|
|
DotNetWWW wrote: Is it possible to use Windows Authentication Mode for SQL Server in workgroup environment
Yes.
Deja View - the feeling that you've seen this post before.
|
|
|
|
|
Thanks ,
How can I do that?
|
|
|
|
|
DotNetWWW wrote: How can I do that?
In SQL Server 2005 you can do it as following
1. Right click on Connected server.
2. Select Properties menu.
3. Select "Security" option from left pane.
4. check the "Server authentication" option in right pane.
5. Select "Permissions" option from left pane.
6. Add Login or Role to particular user.
Knock out 't' from can't,
You can if you think you can
|
|
|
|
|
Thanks for your answer , But :
I'm in a workgroup environment , In this situation , How can I add users of other client computers that are going to connect to server?
and another point is that when I finished writing the program , What settings should I change in order to make my program available for client computers?
Thanks in advance .
|
|
|
|
|
Hi
i am trying to create a new user to my sql server database, but i am strugling,i want to enable this new user to be able to remotely connect to my database using his C# application, can anyone pls help show me how to do this. currently i have a database which i use windows authentication to connect to it, but now i want this new user and i to connect to one database.
thanks
gazide
|
|
|
|
|
Use Stored Procedures sp_addlogin, sp_adduser and sp_addrolemember
|
|
|
|
|
In SQL Server 2005, it is preferable to use CREATE LOGIN , CREATE USER instead of sp_addlogin , sp_adduser .
They will be removed in future versions of SQL Server.
|
|
|
|