Viewing 15 posts - 31 through 45 (of 137 total)
Ed Wagner (3/3/2014)
crookj (2/28/2014)
Ed Wagner (2/28/2014)
Ray K (2/28/2014)
SQLRNNR (2/28/2014)
crookj (2/28/2014)
EricEyster (2/28/2014)
Revenant (2/28/2014)
Ed Wagner (2/28/2014)
Kurt W. Zimmerman (2/28/2014)
SQLRNNR (2/28/2014)
cheeseparingtightfistedness
Punch
Bowl
spoon
dollop
daisy
Duke
Muscle Car (GTO)
Ronnie and the Daytonas
Dodge
Ram
March 3, 2014 at 6:14 am
It is remarkable when organization change from risk avoidance to risk preparedness. Many companies build systems (computer or otherwise) and hope the big issue never happens. Eventually, it does. ...
March 3, 2014 at 6:14 am
Try this out:
create table inventory (
InvID int,
ActivityCode int,
MovementDate datetime,
OldLocationID int,
NewLocationID int
)
select I.InvID, I.ActivityCode, I.OldLocationID ,
sum(datediff(day,I.inDateTime, I.OutDateTime))
from (
select I.InvID, I.ActivityCode,...
February 28, 2014 at 12:57 pm
Are you passing the recordset into a script task for the record by record operation? if so, you can perform the procedure execute in the script task and it will...
February 28, 2014 at 12:33 pm
Do you need to keep the app online? We occasionally move data in secondary files with the app online. painful,slow, but feasible.
February 28, 2014 at 9:18 am
Revenant (2/28/2014)
Ed Wagner (2/28/2014)
Kurt W. Zimmerman (2/28/2014)
SQLRNNR (2/28/2014)
cheeseparingtightfistedness
Punch
Bowl
spoon
February 28, 2014 at 8:58 am
bubby (2/28/2014)
Agreed, but I would I get my size of log low as it is simple database,
data = 2
log = 4
total of 6GB
how short on space is your system? Yes,...
February 28, 2014 at 7:48 am
What is size of the biggest table in the database? My safe estimate for index rebuilds is 2.5 times the size of the original for the log file.
Shrinking...
February 28, 2014 at 7:11 am
Trace will provide all of the login auditing you are looking for including change password. It is easy to configure by using the profiler to build the script.
Auditing the changes...
February 28, 2014 at 7:07 am
I would recommend the background trace which is very easy to filer for just sa
February 28, 2014 at 6:55 am
michael.higgins (2/28/2014)
It does yes but we get round this by writing a custom query to create the headers and add that as part of the BCP script
Yes, this is the...
February 28, 2014 at 6:53 am
elmar.fecker (2/28/2014)
February 28, 2014 at 6:48 am
Do you need just the sa login or any successful login that had sysadmin at that time?
February 28, 2014 at 6:17 am
Is there a reason for using a script task versus a data flow?
February 28, 2014 at 6:03 am
Viewing 15 posts - 31 through 45 (of 137 total)