Viewing 15 posts - 4,561 through 4,575 (of 6,400 total)
So the user object is a group and not an individual user? By any chance do they have a secondary login which is just their user account.
June 21, 2012 at 8:45 am
What edition of SQL server?
2012 runs SQL Data Tools which is built on VS20120
2008+R2 runs BIDS2008 which is built on VS2008
2005 runs BIDS2005 which is built on VS2005
I always ensure...
June 21, 2012 at 8:40 am
Whats the default schema of the user?
If its the username that would be why as it creates everything under that context unless you tell it otherwise. A simple change...
June 21, 2012 at 8:35 am
Wait for the transaction to finish.
June 21, 2012 at 8:21 am
The datasource is missing a username and password to connect to SQL as. If it is not provided in the data source it trys to use the unattended execution...
June 21, 2012 at 8:20 am
There is an active transaction going on in MSDB.
Jobs updating sysjob..... tables, database mail updating sysmail.... tables etc, could be a whole range of things.
June 21, 2012 at 7:53 am
The easier option might be to go down the sp_send_dbmail route, as a mail task in SSIS will require you to export the data to a file, then attach the...
June 21, 2012 at 7:44 am
Look sp_addrolemember for script way of doing it
Or just use SSMS to alter the user in the security folder and grant db_owner on the user in the database,
But are you...
June 21, 2012 at 6:27 am
Thanks Lowell, one to add to the tool repository, will take a look at them.
June 21, 2012 at 6:18 am
Just tested this and cant get it to pop up the new job dialog box, it always opens the Job Properties for that particular job.
You have to remember that to...
June 21, 2012 at 6:06 am
It will be the data from the table where ever the two columns live, more than likely AXV5_SYSUSERLOG or baanloginshist if you are looping the join back to itself.
If you...
June 21, 2012 at 5:31 am
BETWEEN is another way of doing >= and <=
So its instead of
ON
bl.LogDateTime >= CREATEDDATETIME
AND
bl.LogDateTime <= LOGOUTDATETIME
June 21, 2012 at 5:18 am
Viewing 15 posts - 4,561 through 4,575 (of 6,400 total)