Viewing 15 posts - 376 through 390 (of 451 total)
Nils,
No, it is not on a virtual server.
Gail,
This is a production server; the scheduled reboot is this upcoming Sunday. Since this db isn't actively used, I think the plan...
September 25, 2012 at 1:54 pm
GilaMonster (9/25/2012)
Nothing drive-related in the Windows event logs (application or system)Does that DB's log share a drive with any other?
Are you running enterprise edition?
I just double checked the application and...
September 25, 2012 at 11:50 am
Is this just the "wordiness" of SSIS? That is, when an error occurs you see multiple error messages in the process tab. These are what is getting logged.
Would...
September 25, 2012 at 7:59 am
Smash125 (9/21/2012)
One common questions that comes to my mind is
Explain SSIS architecture? My answer may...
September 25, 2012 at 7:54 am
sumit.joshij (9/24/2012)
Or to make it easier for folks :-):
http://msbi2012.blogspot.in/2012/09/expression.html
Rob
September 25, 2012 at 7:43 am
ramyours2003 (9/25/2012)
Microsoft (R) SQL Server Execute Package Utility Version...
September 25, 2012 at 7:42 am
The SQL logs just have [font="Courier New"]Error. 9001 Severity: 21. State: 1.[/font] - which I think is related to the bad log. And [font="Courier New"]The log for database...
September 25, 2012 at 7:31 am
GilaMonster (9/25/2012)
Are there any related messages in the event log?
Looking in Event Viewer on the server under Administrative Events, I see "The log for database 'DatabaseName' is not available. ...
September 25, 2012 at 6:36 am
robert.gerald.taylor (9/24/2012)
September 24, 2012 at 9:36 am
Would your report work if it ran at 12:01am? What does the report's query look like? It's hard to speculate why this might not work without more info.
Rob
September 24, 2012 at 9:06 am
dwain.c (9/19/2012)
SELECT col
FROM @t
CROSS APPLY (
VALUES (col1), (col2), (col3), (col4)) a(col)
This article describes the CROSS APPLY VALUES approach to UNPIVOT: http://www.sqlservercentral.com/Authors/Articles/Dwain_Camps/1444841/...
September 20, 2012 at 6:05 am
Please don't post your question in multiple forums; it just fragments the responses.
Thanks
September 19, 2012 at 8:06 am
Yes, you want to create a variable and the set the flat file connection managers connection string property expression to use the variable that you created for the file name.
Take...
September 19, 2012 at 7:16 am
Couldn't you just unpivot your data? Something like:
SELECT DISTINCT SpecificCols
FROM
(SELECT col1, col2, col3, col4
FROM @t) t
UNPIVOT
(SpecificCols FOR AllCols IN...
September 19, 2012 at 6:20 am
$ammy (9/16/2012)
I have created a SP which is used for Backup/Restore. Now the problem is I need to create a table which is used for collecting the log information,...
September 16, 2012 at 8:08 pm
Viewing 15 posts - 376 through 390 (of 451 total)