Viewing 15 posts - 16 through 30 (of 92 total)
Thank you Sean! This is indeed a good starting point for a novice like me. 🙂
May 31, 2012 at 1:58 pm
Thats strange. Can you look at the windows event log and see whats going on there at the same time? There should be HUP signal from some other process for...
May 31, 2012 at 1:57 pm
Do you see any kind of error message? If you have the exact error message, post it here and someone should be able to help you.
May 31, 2012 at 12:44 pm
Are you looking to write a query instead of the management studio right click version?
March 21, 2012 at 7:48 am
Can I use OPENROWSET (and ROWSET functions in general) to over come this issue?
March 21, 2012 at 7:46 am
Howard,
I already tried doing that. But this ODBC driver doesn't seem to handle that too.
What I am thinking is that when ODBC establishes the connection, it expects to see...
March 15, 2012 at 8:58 am
I would agree to the fact that we can always use the derived column to change the data. But the problem is, the package fails at the ADO.NET/OLEDB source itself...
March 15, 2012 at 8:48 am
This doesnt help either. The ODBC driver for UniVerse does not allow specifying any other SQL functions except SELECT. So in effect, all I can write is SELECT ColumnA, ColumnB,...
March 15, 2012 at 8:39 am
I got the solution. While creating the code, I had thought that I would be replacing the single quotes as well with a set statement. But that was not the...
February 23, 2012 at 3:27 pm
My bad..I didnt even mention that.
It says "Incorrect syntax near ')' ".
I am using Print statements to weed out what's going wrong.
February 23, 2012 at 3:13 pm
Create a variable of string type and set its value as the following:
(DT_STR, 4, 1252)DATEPART("yyyy", @[System::ContainerStartTime]) +
RIGHT("0" + (DT_STR, 2, 1252)DATEPART("mm", @[System::ContainerStartTime]), 2) +
RIGHT("0" + (DT_STR, 2, 1252)DATEPART("dd",...
February 21, 2012 at 2:39 pm
I agree that it will not give you the entire date. But some manipulation and concatenation can get you there. Though it might not be optimal, it will get the...
February 7, 2012 at 10:48 am
Thanks for your inputs! It helped me a lot:-)
February 7, 2012 at 10:21 am
The magic word is DATEPART my friend. Use it 😀
February 7, 2012 at 10:20 am
try something like this.
I have intentionally not written the update code. I guess you can figure that out on your own 😎
create table #orders_delivered_sta
(
#orders_delivered_sta_id int primary...
February 7, 2012 at 10:18 am
Viewing 15 posts - 16 through 30 (of 92 total)