Viewing 15 posts - 211 through 225 (of 536 total)
Piotr.Rodak (10/5/2009)
October 5, 2009 at 1:18 pm
Hi,
Thanks for the reply. Unfortunately i tried that also with no success. I only use one schema, everyone uses dbo.
October 5, 2009 at 11:34 am
One question i have regarding those that use a purely windows environment, is how do you keep your users from using tools like access/excel etc to look at your data?
I...
October 1, 2009 at 4:54 am
I work with a similar file structure with Banking systems. the way i do it is via SSIS. i import the file into a staging table which stores...
October 1, 2009 at 4:30 am
was he talking about partitioning? if so then yes that can greatly improve the performance of your database
September 9, 2009 at 8:46 am
Do you still actually want the job to continue if one of the steps fail? if not then just change the failure action to "quit the job reporting failure"....
September 6, 2009 at 12:13 pm
what authentication are you using in your data source?? And does the report fail for you when you try to run the report or just other users?
Also check that...
September 5, 2009 at 7:05 am
Jpotucek (9/2/2009)
We have A SQL Server 2000 Server with Several Instances and a seperate SQL Server 2005 Server built out with the same instances and I have been migrated databases...
September 3, 2009 at 2:30 am
Thanks Grant. assuming i do raise an error, i assume this still cannot be read by the sql job as to whether ot not to run the second step....
September 1, 2009 at 6:02 am
it does sound a bit conincidental, and like you say the database move appears to be successful.
A couple of things i would try.
1) is there an application log - or...
August 31, 2009 at 12:20 pm
why not just put an extra column in your destination table and give it a default of getdate(). that way you wont need to change your current SSIS job...
August 30, 2009 at 11:36 am
you only need to use the expression part once. create a variable - call it something like outputfile - which you can evaluate as an expression. then use...
August 30, 2009 at 11:32 am
espanolanthony (8/27/2009)
thanks. and anything else i can do if i can find a lock or some more tricks to check lockings and how do i deal with it?
This script is...
August 27, 2009 at 9:33 am
look at sys.sysprocesses
select * from sys.sysprocesses where blocked > 0
This will return the SPID of the offending transaction (the number in the blocked column is the SPID number that is...
August 27, 2009 at 8:36 am
ive not got any links to documents etc but by default SQL 2005 is fairly secure as a fresh installation as all the remote routes into it are closed anyway,...
August 27, 2009 at 7:26 am
Viewing 15 posts - 211 through 225 (of 536 total)