Viewing 15 posts - 226 through 240 (of 1,346 total)
Would We know how What is done?
I might be missing something, but what question are you asking specifically.
are you asking about locking?
January 21, 2009 at 12:51 pm
What are you trying to do within your loop?
are you trying to update all the rows one at a time?
one specific row?
Please take your sample data and show us what...
January 21, 2009 at 10:08 am
I'd use identity column as G noted.
But you also must keep in mind that all triggers MUST be written to accept more than 1 row at a time.
Your trigger will...
January 21, 2009 at 9:56 am
sqldts80.hlp, That is sql2000 DTS.
Is there any way you can get the vb guys to save the VBS output file, instead of executing, then try to import to DTS and...
January 21, 2009 at 9:53 am
Try @Balance / 100.0000
January 21, 2009 at 9:50 am
The error is happening here
while (select count(field1) from test)
While requires Boolean expression
So is it
while (select count(field1) from test) > 0
January 21, 2009 at 9:24 am
Can you please explain your situation better.
what do you mean top 10? The first 10 records in the table,
The top 10 highest quantity? How do you define this?
Please post DDL...
January 21, 2009 at 9:22 am
It goes back to knowing your data types and how much space each "Column" takes.
Char(100) is 100 Bytes no matter how many characters you put in the field
But a varchar(1000)...
January 21, 2009 at 9:16 am
The problem you face is GIGO
Garbage In, Garbage Out.
Although not always under your control, the cleanliness of the data should be part of the front end.
You have to evaluate whether...
January 21, 2009 at 8:56 am
Sure its possible.
Nearly anything is possible.
But not as straightforward as a simple query.
What are you looking for.
January 21, 2009 at 8:50 am
If you are using a Foreach Loop Container then the package should not fail if there are no files.
I just tested it to be sure.
What Is the actual error you...
January 15, 2009 at 3:32 pm
If it is just the t-sql saved in a file you can use BCP to run the contents of the file.
OR
you can Create a Sql Agent job, and for...
January 14, 2009 at 4:54 pm
Without information on specific problems you are having here are a few links that may help.
http://www.sql-server-performance.com/articles/dba/package_configuration_2005_p1.aspx
http://vyaskn.tripod.com/sql_server_2005_making_ssis_packages_portable.htm
January 14, 2009 at 4:47 pm
I'm pretty sure you only need 1 with statement.
Take out the others.
January 13, 2009 at 4:24 pm
Take a gander at this link
http://www.ssistalk.com/2007/03/30/ssis-some-random-tidbits/
(DT_WSTR,4)YEAR(GETDATE())
RIGHT(”00? + (DT_WSTR,2)MONTH(getdate()),2)
RIGHT(”00? + (DT_WSTR,2)DAY(getdate()),2)
January 13, 2009 at 4:18 pm
Viewing 15 posts - 226 through 240 (of 1,346 total)