Viewing 15 posts - 46 through 60 (of 130 total)
If the database is small enough, you could script out all of the data -- right click on DB in SSMS and chooses Tasks, Generate Scripts. Then run that...
September 20, 2011 at 7:14 am
In MS Excel, do a File, Save As, and choose the CSV (Comma delimited) (*.csv) choice. This will convert the particular sheet from .xls or .xlsx to a .csv...
September 16, 2011 at 5:23 am
Is this a one time load? If so, just save this particular sheet as a .csv file and load the flat file into your SQL table using SSIS. ...
September 16, 2011 at 4:23 am
Not knowing many specific details, I'd say yes, use SSIS on the server to do the pieces that make sense there.
September 15, 2011 at 8:49 am
You can have your .Net application start a SQL Server Agent job that runs the SSIS package(s). Create a SQL Agent service account on the server that has the...
September 15, 2011 at 7:11 am
I'm not totally following you, but it sounds like you may be getting transactions and need to apply these changes to your data warehouse. Could you do something like:
1)...
September 14, 2011 at 9:00 am
Another incorrect question; point please.
The second insert; inserts one record before the PK violation. The second SELECT returns back one.
So the answer is error, error, 0 & 1.
Rob
September 14, 2011 at 7:55 am
What's the business need for knowing that something was inserted and updated on the same day?
(I may be making assumptions,but ) It sounds like you're building/updating your data...
September 13, 2011 at 5:33 pm
Is this a one time load, or a reoccuring task? Is the date embedded within the first four lines, or are they complete lines. Could you post some...
September 12, 2011 at 10:40 am
imani_technology (9/8/2011)
September 9, 2011 at 5:49 am
Maxer (9/6/2011)
So I'm only a little ways in and we are talking about dimensions for a...
September 6, 2011 at 2:50 pm
sunnyepgc (8/31/2011)
Error:The underlying connection was closed: An unexpected error occurred on a receive.
I am...
August 31, 2011 at 6:29 am
It looks like someone or some other process has the Access db (.mdb) already opened. Is there a .ldb (lock file) in the same directory? If nothing has...
August 30, 2011 at 12:47 pm
Make sure you are using C# (the code I gave you) as opposed to VB.Net -- this is set in the Tools, Options of VS.
The error is saying it can't...
August 30, 2011 at 11:14 am
Just select the variable ( @[User::MaxDate] ) you want to display in the ReadOnly variables -- you're not going to update it, just display it.
Then click on the Edit Script...
August 30, 2011 at 9:32 am
Viewing 15 posts - 46 through 60 (of 130 total)