Viewing 15 posts - 6,856 through 6,870 (of 7,168 total)
What you'll want to do is to make the last step of the job look at the result of the previous steps and then either raise an error to fail...
March 21, 2011 at 1:45 pm
Third-party drivers used via Linked Servers are a notorious source of memory leaks. Depending on how your app maintains its connections, the use of the procedure sys.sp_xml_preparedocument to prepare an...
March 21, 2011 at 1:32 pm
I have not used it however a SQL Skills blog came to mind...here is a good primer backed up with some real-world experience (see comments from readers too): http://www.sqlskills.com/BLOGS/KIMBERLY/post/SQL-Server-2005-and-2008-Compression.aspx
March 21, 2011 at 11:28 am
6GB would be a fine place to start...max memory is an art not a science. Glenn has 6400MB recommended on a system with 8GB of RAM which is a shade...
March 21, 2011 at 11:11 am
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...
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)...
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...
March 21, 2011 at 10:30 am
Double-post...direct replies here: http://www.sqlservercentral.com/Forums/Topic1081364-149-1.aspx
March 21, 2011 at 10:22 am
Best_boy26 (3/20/2011)
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...
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...
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...
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...
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 ?
March 21, 2011 at 7:04 am
Viewing 15 posts - 6,856 through 6,870 (of 7,168 total)