Viewing 15 posts - 3,631 through 3,645 (of 6,397 total)
Thats a VB script that your editing, mine is a C# script, if you change the type on the properties of the task you can change it between C and...
October 1, 2012 at 2:52 am
Something like this?
DECLARE @Table TABLE (SD DATETIME, ED DATETIME)
INSERT INTO @Table VALUES
('2012-09-30 12:35:26.033','2012-09-30 12:51:05.170'),-- 15.650000
('2012-09-29 16:27:35.957','2012-09-29 16:43:45.987'),-- 16.166666
('2012-09-28 20:07:19.493','2012-09-28 20:23:33.343'),-- 16.233333
('2012-09-27 01:05:07.513','2012-09-27 01:20:00.410'),-- 14.883333
('2012-09-20 11:11:27.083','2012-09-20 11:29:00.037'),-- 17.550000
('2012-09-19 17:56:50.700','2012-09-19 18:15:17.540')-- 18.450000
SELECT...
October 1, 2012 at 2:32 am
We do exactly the same thing, but we download the files first then use a for each loop to process them all.
We use a script task with the following code,...
October 1, 2012 at 2:22 am
If you know the logic and the joins and have the SQL statements to do all the work, you just need to use the data flow tasks and supply the...
October 1, 2012 at 2:15 am
Then yes, SSIS will be able to read data from 1 database then insert it into another database.
October 1, 2012 at 2:04 am
There really isn't much difference between the two.
If you want a scaled out web farm, powerview, alerts or data driven subscriptions then you need Enterprise, otherwise you can get away...
October 1, 2012 at 2:03 am
What it looks like you need is a UNION clause, either in a stored proc on direct in the data set.
SELECT
1,2,3
FROM
DB1.dbo.Table2
UNION / UNION ALL
SELECT
1,2,3
FROM
DB2.dbo.Table1
October 1, 2012 at 1:59 am
Where is your data coming from?
Once we know that we can say if SSIS will perform the tasks needed to import the data for you.
October 1, 2012 at 1:48 am
Are you a member of any group which exists on the SQL server, say a domain group or a local group which has access to other things.
September 28, 2012 at 3:31 am
ProcessAdmin you can add a member to processadmin and also KILL connections, nothing relating to security.
September 28, 2012 at 3:30 am
Also have you logged out and back in again to SQL as usually the changes dont apply until you have.
September 28, 2012 at 2:53 am
Do you have any server level roles assigned to yourself?
September 28, 2012 at 2:53 am
Grant Fritchey (9/27/2012)
THREADIZENS!Who is going to make it to any of the SQL in the City events coming up in the next week+?
I missed the London one's due to family...
September 28, 2012 at 2:09 am
If you dont want yourself to re-add access, then you will want to remove db_accessadmin also.
Members of the db_accessadmin fixed database role can add or remove access for Windows logins,...
September 28, 2012 at 2:05 am
IIFC it should automatically appear when the logfile is restored on the secondary.
September 28, 2012 at 2:02 am
Viewing 15 posts - 3,631 through 3,645 (of 6,397 total)