Viewing 15 posts - 5,896 through 5,910 (of 7,168 total)
Gee Craig, I don't know what to say, except wow! I got pulled into an SSIS mess yesterday afternoon so did not have time to do any testing. Even if...
June 24, 2011 at 4:47 am
No problem. I am curious now though, because a default of 100 is not really appropriate for most shops IMO...I usually change the default to 90 on all my systems...
June 24, 2011 at 4:24 am
Adrian Strudwick (6/24/2011)
I was aware of scripting out the linked server...
June 24, 2011 at 4:07 am
Here's a query I have used in the past to generate commands I can run later. The script was not tested on partitioned tables. Adjust the WHERE clause and fill...
June 24, 2011 at 3:24 am
PS The column does not have to be persisted either. A computed column would keep the footprint of the table down and still qualify for inclusion in an index.
June 24, 2011 at 3:09 am
AFAIK the WHERE clause is evaluated before the SELECT column list so what you're describing makes no sense to me. If you can reproduce the situation please post sample DDL,...
June 23, 2011 at 4:02 pm
Workloads are useful for this: http://msdn.microsoft.com/en-us/library/ms190957.aspx
June 23, 2011 at 3:48 pm
You can set the default for the database back to 0 (functionally same as 100) with this...
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'fill factor', 100;
GO
RECONFIGURE;
GO
...however that only affects new indexes that...
June 23, 2011 at 3:40 pm
If you're still out there I may have found a workaround for you. Try adding a no-op select statement to "declare" metadata to the pipeline.
Credit here:
http://social.msdn.microsoft.com/forums/en-US/sqlintegrationservices/thread/ee686cf8-0880-4a1d-8706-ba72fbb2eba8/%5B/url%5D
I just ran into the...
June 23, 2011 at 1:55 pm
Thanks for taking the time, I appreciate your responses. You're correct Kevin, the thread definitely took on a slightly different personality once indexes were added to the mix and so...
June 23, 2011 at 1:47 pm
TheSQLGuru (6/23/2011)
June 23, 2011 at 12:08 pm
He's going from a Java data structure to a SQL table, not a SQL table to another SQL table.
June 23, 2011 at 11:52 am
I see. It appears that Data Manager is the problem. Unless Data Manager can be configured to generate those insert statements with the N in front of the string literal...
June 23, 2011 at 11:33 am
I just looked up Oracle's SPOOL and I don't know of anything equivalent in native T-SQL. You could write or borrow a SQLCLR function that can write to a text...
June 23, 2011 at 11:23 am
Viewing 15 posts - 5,896 through 5,910 (of 7,168 total)