Viewing 15 posts - 46 through 60 (of 65 total)
Are you using a for each loop and adding the filename as a variable which you can then use to input into the log table? You could then use that...
April 25, 2007 at 7:21 am
Is the store number known at all or is it only available by looking at the filename? if only from the filename are all filenames in the format [StoreNumber]file.csv?
Catherine
April 24, 2007 at 11:08 pm
A really good description of how to do this can be found at:
http://msdn2.microsoft.com/en-us/library/ms141214.aspx (this one is a little wordy - but gives you a detailed explination)
http://www.sqlnerd.com/ssis_dynamic_dates.htm (much better with screenshots...
April 24, 2007 at 11:05 pm
What type of replication are you using? With Merge Replication you can setup a publisher to become a distributor.
Catherine
April 24, 2007 at 10:37 pm
You may also find that if the login you are using to run this is a SQL login - it may need to be added to the sysadmin role.
Catherine
April 24, 2007 at 10:29 pm
On the general Tab of the Schema Properties (within the actual database) there is a Schema Owner field and a Search button. Search to who you want your Schema to...
April 24, 2007 at 10:26 pm
It really depends on how many changes are made during the day to your system and what type of connection you have to the second server that the replicated data...
April 24, 2007 at 9:56 pm
I should also mention that the SQL user is a network user that has permission to access the network share. This worked prior SP2 upgrade.
Thanks,
Catherine
April 22, 2007 at 10:27 pm
I actually found this site really helpful:
http://www.auditdatabase.com/Index.htm
They have an online too that you can input your table definition into and it spits out scripts to create triggers...
April 19, 2007 at 1:25 am
You need to further aggregate this result set. wrap the select statement you have so far in the followng
Select Sum(monthly) as monthly, Sum(Annual) as Annual, Day
From ({your current SQL statement...
April 11, 2007 at 11:33 pm
If you work out how to do this in SSIS please let me know as I need to do a similar thing - but connecting to Exchange Contacts. I was...
April 11, 2007 at 11:24 pm
No Worries! Glad to have been able to help!
April 9, 2007 at 6:12 pm
You could also do this using a group by statement:
SELECT PartnerLeadTypeID, PartnerID, LeadTypeID, isActive, AllowedStates, RestrictedStates, CreditHistory, LoanAmount, PropertyValue, LoanToValue, PropertyType,
RestrictedCityState, SoftCap, HardCap, HasLender, HasAgent, FoundHome, Bankruptcy, ProdPostURL,
count(*) as...
April 9, 2007 at 6:00 pm
I had to do a similar thing but creating individual files for each order, using the order number as the filename. I will explain how I did this so it...
April 6, 2007 at 4:13 am
You can use variables in the For Each Loop to keep track of which file you are currently accessing. This will allow you to then access those variables within your loop tasks.
See...
April 6, 2007 at 3:55 am
Viewing 15 posts - 46 through 60 (of 65 total)