Viewing 15 posts - 751 through 765 (of 2,612 total)
Look up FOR XML in Books Online.
September 3, 2008 at 12:06 pm
A domain move is pretty easy. The Windows authentication users and service accounts are the only real problem. You may want to drop the logins first, they can...
September 3, 2008 at 9:55 am
What are the data types of HandleID and ID?
September 3, 2008 at 8:34 am
Querying the database directly is not a good idea. Use the web services made public through the report server. MS may (and does) change the database structure you...
September 3, 2008 at 7:57 am
To run an SSIS package, the machine needs to be an SSIS Server. Which also means you would need to buy a SQL Server license for every laptop. ...
September 3, 2008 at 5:29 am
I have a "travel" laptop. It's basically a dumb terminal and I can rdp into machines on my home network and into my workstation at work.
So, I could basically...
September 3, 2008 at 5:21 am
The UNION ALL is probably the best solution. You may also be able to simply set the "RetainSameConnection" property on the file connection manager to True.
September 3, 2008 at 4:24 am
If that is the behavior you really want, how about creating a persisted computed column concatenating the make and model together and create a fulltext index on that? I...
September 2, 2008 at 1:26 pm
Not really well. Bad data like this is a problem with most parsing software.
If you only have one field that the problem can happen in, you are not in...
September 2, 2008 at 1:23 pm
You could use a ForEach and a script component. In the script component, you could include the logic to determine which variable to put each row into.
It may be...
September 2, 2008 at 12:41 pm
Look for some information on the ForEach component. In the available enumerators, there is a ForEach File enumerator that you just point at a directory. It will loop...
September 2, 2008 at 12:38 pm
A data type error happens in SSIS - because your data does not match the destination definition. The NULL is failing due to a database constraint - which happens...
September 2, 2008 at 12:36 pm
Yes, you are misunderstanding the UNION ALL entirely.
I would suggest you take a look at Books Online or pick up an SSIS book before you get into anything complicated. ...
September 2, 2008 at 9:42 am
This is an area that MSSQL Server is pretty lacking. It would be nice to have something built in, but even using VSS, differencing anythng is pretty ugly.
I like...
September 2, 2008 at 9:30 am
If you are going to use a UNION ALL, it would go after the MULTICAST so you only need a single Destination component.
None of the components you are using should...
September 2, 2008 at 9:21 am
Viewing 15 posts - 751 through 765 (of 2,612 total)