Viewing 15 posts - 196 through 210 (of 1,080 total)
February 16, 2017 at 6:18 am
not sure if you wanted anyone to send you a dtsx file...but here are links to articles that will get you going.
http://www.sqlservercentral.com/search/?q=SSIS&t=a&sort=relevance
February 15, 2017 at 12:49 pm
Interesting.
What results do you get when running
select name, database_id from sys.databases
and when focused on 'object'select db_name(), db_id()
February 15, 2017 at 9:47 am
February 15, 2017 at 9:30 am
February 15, 2017 at 9:13 am
mw112009 - Wednesday, February 15, 2017 9:09 AMIncorrect # of parenthesis count the number of "(" and ")"
try =IIF(IsDate(Fields!HIST_SRVC_DT.Value)=True, Fields!HIST_SRVC_DT.Value, 0)
had one extra...
February 15, 2017 at 9:11 am
you need to evaluate, if true, if false.
=IIF(IsDate(Fields!HIST_SRVC_DT.Value)=True), Fields!HIST_SRVC_DT.Value, 0)
replace my 0 with what happens if your evaluation returns a false value.
February 15, 2017 at 9:01 am
I am trying to connect Oracle source using .Net Providers\Odbc Data Provider.
it shows...
February 15, 2017 at 7:30 am
February 15, 2017 at 6:56 am
Alt alone not doing that trick, Shift+Alt works.
February 15, 2017 at 5:57 am
February 8, 2017 at 9:47 am
I can get the info an individual day like this;
INSERT INTO #TEMP
SELECT...
January 31, 2017 at 12:46 pm
If you delete data from a table would sp_clean_db_free_space satisfy a requirement that...
January 20, 2017 at 10:32 am
Viewing 15 posts - 196 through 210 (of 1,080 total)