Viewing 15 posts - 16 through 30 (of 38 total)
You have 2 options :
June 3, 2005 at 6:17 am
I think what you need is a Dynamic Property Task. When this task is executed it will assign values to your global variable at run time.
What you need to do...
May 19, 2005 at 2:41 pm
This version uses the SQL92 "outer join" construct. It still resolves to the same thing as whar Remy wrote.
INSERT dbo.Contacts(compID, first, last, phone, email)
SELECT ic.compID, ic.fname, ic.lname, ic.phone, ic.email
FROM
April 19, 2005 at 9:09 am
No, that will not do. You cannot assign the output value to the column in the CASE statement.
the statement : select ISNULL(COL014, 7.45) AS COL014 would work fine. Prefer...
March 9, 2005 at 1:19 am
MSDE installs itself by default to use Windows Integrated Security only.
If you need to access MSDE using Mixed Security Mode you have to change Registry Setting :
HKLM/Software/Microsoft/MSSQLServer/MSSQLServer/LoginMode
From value 1 to...
March 9, 2005 at 1:15 am
Yes, you can use EXCEL and its Pivot Table with data coming
from external data sources as long as you can read from these source using OLEDB.
1. Open a new...
March 8, 2005 at 9:05 am
Check this link :
http://www.sqlservercentral.com/columnists/jyao/howtobeagooddbastrategyandtactics.asp
HABIB
March 3, 2005 at 1:39 am
It also happens if someting changes in the structure of the table on SQL SERVER, and you do not refresh the table link in ACCESS.
HABIB.
March 3, 2005 at 1:32 am
Or use BCP to export the result to a comma separated flat file. Excel will have no problem reading the CSV file directly.
HABIB.
March 3, 2005 at 1:29 am
A good design pattern would be to transfer the selected items between the web page and the web server as XML data. Then you can design the stored procedure with a single...
February 24, 2005 at 12:43 pm
1. Use a dynamic variable task to set up connection parameters at run-time for the destination.
2. Save the package as a structured storage file
3. To help you generate the command...
February 24, 2005 at 12:32 pm
I found that date formatting is probelmatic with international systems (i.e; French = dd/mm/yyyy).
The best way to pass dates to sql server in any locale is to use a...
February 23, 2005 at 3:17 am
There is a tool by Microsoft called SQLWEBADMIN. Look for it in the downloads section de http://www.microsoft.com/sql
You have to install it on the server and allows you to ru...
February 23, 2005 at 3:01 am
Changing collations using ALTER DATABASE requires that the database be in single user mode. So it is best to do it one time independently of the DTS.
One things to remember...
February 23, 2005 at 1:52 am
Christo has summed it up.
You can comfortably handle that number of records and the high rate.
But to make things even more comfy, ovoid clustered indexes except for a timestamp...
February 22, 2005 at 9:14 am
Viewing 15 posts - 16 through 30 (of 38 total)