Viewing 15 posts - 7,576 through 7,590 (of 9,643 total)
Mine will likely be slightly different as the only Foxpro data I have access to is in free tables so that's all I know. Here is the linked server...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
September 8, 2008 at 10:48 am
I meant what you get when you open the OLEDB Destination for edit, but this actually gave me what I was interested in, since you are outputting errors to a...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
September 8, 2008 at 10:43 am
Here is something that works on a simple one table problem:
[font="Courier New"]DECLARE @cities TABLE(zipcode CHAR(5), city VARCHAR(25), TYPE CHAR(1))
INSERT INTO @cities
SELECT
'85739', 'TUCSON', 'C'
UNION ALL
SELECT
'85739', 'TUCSON', 'N'
UNION ALL
...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
September 8, 2008 at 9:58 am
Try changing the login option to "Be made using the login's current security context". I tried this using a basic SQL login that is only in the public server...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
September 8, 2008 at 9:47 am
What are the properties of the oledb destination?
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
September 8, 2008 at 9:39 am
Could you post the steps you are using to import the data?
Are there any other processes accessing the table that the data is being imported into?
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
September 8, 2008 at 8:46 am
Wish I could understand exactly what it means too. I'm glad the update worked. I thought it might because it "changes" the values. A good blog on...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
September 8, 2008 at 8:42 am
Thanks Gail. I guess that's my one new thing learned for the day, so I can go home now.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
September 8, 2008 at 8:38 am
You need to wrap this:
bcp "SELECT getdate()" queryout "E:\BULKUPLOAD.dat" -c -U sa -P password
in a pair of single quotes like this:
''bcp "SELECT getdate()" queryout "E:\BULKUPLOAD.dat" -c -U sa -P password''
Remember...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
September 8, 2008 at 8:35 am
Here's my first pass in T-SQL:
[font="Courier New"]DECLARE @table TABLE(DAY INT, Week INT, MONTH INT, Customer CHAR(3), PurchaseCount INT)
INSERT INTO @table
SELECT
1, 1, 1, 'ABC', 10
UNION ALL
SELECT
7, 2, 1, 'DEF', 12
UNION...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
September 8, 2008 at 8:20 am
I'm assuming you already know how to get the file name into a variable and how to process it.
After processing the file use a File System Task with an operation...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
September 8, 2008 at 8:09 am
You should be able to this pretty simply in SSIS, but without any example data and information about the fixed with sizes it is hard to give you any kind...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
September 8, 2008 at 8:06 am
What is latex? I know it is a type of rubber, but I am assuming it means something else in this context.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
September 8, 2008 at 8:02 am
Is the SQL Server setup to use Mixed Authentication?
By default only members of the sysadmin role would have rights within database when you create and then any logins you add...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
September 8, 2008 at 8:01 am
I think you can use the ReportItems Collection. So the expression, using your example below, would be:
ReportItems!TextBox1.Value/ReportItems!TextBox2.Value
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
September 8, 2008 at 7:55 am
Viewing 15 posts - 7,576 through 7,590 (of 9,643 total)