Viewing 15 posts - 7,396 through 7,410 (of 13,882 total)
Instead of
set @START_DATE = @START_YEAR + '-' + @START_MONTH + '- 01 00:00:00'
set @END_DATE = @END_YEAR + '-' + @END_MONTH + '- 01 00:00:00'
Try this:
set @START_DATE = try_Parse(@START_YEAR...
March 21, 2016 at 6:52 am
Please post the full text of the error message.
March 21, 2016 at 6:29 am
Igor Micev (3/18/2016)
v-studios (3/18/2016)
Hi John,each SSIS instance would in fact have its own database engine to store its databases, the catalog database etc.
The catalogs databases are small and don't keep...
March 18, 2016 at 5:40 am
I agree with all of John's comments. Lots of memory and speed of connection to data sources would be high on the list.
March 18, 2016 at 4:39 am
One where there are 300 ticks per second, yes?
Actually, no.
1/0.0033 = 303.03030303......
hardly a round number.
300 ticks per second = 3.3 recurring milliseconds
March 17, 2016 at 2:50 pm
ScottPletcher (3/17/2016)
Phil Parkin (3/16/2016)
March 17, 2016 at 2:10 pm
Dynamic SQL is not necessarily required – "long-winded SQL" can avoid it. For example:
DECLARE @Col varchar(10);
SET @Col = 'Col1';
--set @Col = 'Col2';
IF Object_Id('tempdb..#Test','U') IS NOT NULL
DROP TABLE #Test;
CREATE TABLE #Test...
March 17, 2016 at 8:30 am
manoj.kumar-1078069 (3/17/2016)
1) Keeping text file as source (1 column) Load it in a recordset destination using dataflow
2) Loop over the record set and...
March 17, 2016 at 6:00 am
DATETIME is stored internally in SQL Server as the number of days since 1/1/1900 (the integer part) plus (I think) a decimal part representing the number of 300ths of a...
March 16, 2016 at 11:43 am
pjk_tgk (3/16/2016)
March 16, 2016 at 10:45 am
SQL!$@w$0ME (3/16/2016)
What is the best way to provide access to run few sql agent jobs on an instance with out granting [SQLAgentOperator] role.
Don't know about the *best* way, but one...
March 16, 2016 at 7:04 am
sqlnewbie17 (3/15/2016)
Lets say a server is not reachable for any reason.My foreachloop should skip that server and...
March 16, 2016 at 6:27 am
Not directly.
But you can handle it with some code. Import every row as a single column and then send that through a Script Component to parse out the relevant columns.
March 16, 2016 at 6:20 am
If you are open to alternative ideas, have you considered creating a table of 'selected customer numbers', which can be repopulated every time the job runs?
The table, or tables, would...
March 16, 2016 at 6:17 am
Viewing 15 posts - 7,396 through 7,410 (of 13,882 total)