Viewing 15 posts - 6,856 through 6,870 (of 7,164 total)
DZN (3/21/2011)
1. Excel format is available (there is no use of Office automation on the server side)....
No automation in your files is a good thing...you'll still need to install additional...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
March 21, 2011 at 11:02 am
[Opinion] Simpler-to-read syntax:
DECLARE @StartDate DATETIME = '2011-11-17 03:17:14.000',
@StartTime DATETIME = '1899-12-30 04:34:47.993'
SELECT CAST(CAST(@StartDate AS DATE) AS DATETIME)...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
March 21, 2011 at 10:40 am
I am pretty sure this has nothing to do witht eh fact that your using SSMS 2008 by the way, this has to do with how SQL Server looks for...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
March 21, 2011 at 10:30 am
Double-post...direct replies here: http://www.sqlservercentral.com/Forums/Topic1081364-149-1.aspx
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
March 21, 2011 at 10:22 am
Best_boy26 (3/20/2011)
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
March 21, 2011 at 10:21 am
It's best not to use SQL Server to access Excel. Microsoft does not stand behind any use cases where Excel is being accessed from unattended server-side code:
http://support.microsoft.com/kb/257757
Ideally you should request...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
March 21, 2011 at 10:12 am
If you don't know how to write C# code then why do you want to convert this code to C#?
If you are serious about using C# as your chosen .NET...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
March 21, 2011 at 9:10 am
Koen Verbeeck (3/21/2011)
opc.three (3/18/2011)
I know there is not a 2008 SSIS forum...but I think there should be...Steve (Jones, SSC Editor)...are you listening? 🙂
All the way down, there is a general...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
March 21, 2011 at 7:22 am
Create a staging table on the same filegroup as your partition, use SWITCH to move the data from your table partition into the staging table. You can then TRUNCATE the...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
March 21, 2011 at 7:08 am
Using the example Column data you gave what does the actual line of text look like in the file? 1|2||4|3 ?
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
March 21, 2011 at 7:04 am
Check out http://www.connectionstrings.com
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
March 19, 2011 at 1:24 pm
Check out http://www.connectionstrings.com
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
March 19, 2011 at 1:24 pm
I was a full-time C#/SQL dev 4 years ago (80/20 split) and I could not stand SSIS when it first hit the scene because it seemingly made things so much...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
March 18, 2011 at 7:43 pm
I made up some DML since you did not provide any :Whistling:
INSERT INTO dbo.root(root_id)VALUES (1)
INSERT INTO dbo.subroot(subroot_id, root_id)VALUES (1,1)
INSERT INTO dbo.tempxml(subroot_id, childnodes)VALUES (1,'<data value="test"/><data value="test2"/><otherdata value="test3"/>')
With your...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
March 18, 2011 at 4:57 pm
Thanks for playing along too...I thought this might be doable using the Pivot transformation however I have decided 'no'. If the elements were Child1, Child2, Child3, Car1, Car2, Car3, etc....
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
March 18, 2011 at 4:42 pm
Viewing 15 posts - 6,856 through 6,870 (of 7,164 total)