Viewing 15 posts - 286 through 300 (of 2,268 total)
sadly SSIS variavles only go down to 1 second intevals.
one workaround to include milli-seconds is to convert the value to a Varchar and store this in a string variable and...
July 28, 2011 at 10:52 am
PeterG-377490 (7/28/2011)
As far as the additional request -
THere could be 5m rows
156 dates (3 yrs)
50,000 different items.
The query distribution is estimated at
1/3...
July 28, 2011 at 10:29 am
do you mean seconds (:59 ) or milliseconds as well (:59.000) ?
July 28, 2011 at 10:28 am
As Item_Num is not on the leading edge of your index, it could benefit from having an additional index added.
July 28, 2011 at 10:18 am
have a look at the Management Logs on SQL server, there will be an entry that will correspond to you access problem this will have a code that will...
July 28, 2011 at 5:32 am
ajsnyman (7/28/2011)
steveb. (7/28/2011)
ajsnyman (7/28/2011)
steveb. (7/28/2011)
ajsnyman (7/28/2011)
So when the primary server dies,...
July 28, 2011 at 4:44 am
ajsnyman (7/28/2011)
steveb. (7/28/2011)
ajsnyman (7/28/2011)
So when the primary server dies, so we can...
July 28, 2011 at 4:31 am
pandeesh (7/28/2011)
Yes. But is it possible via t-SQL?
No, you can not create a trigger via t-sql for this.
July 28, 2011 at 4:28 am
ajsnyman (7/28/2011)
Jayanth_Kurup (7/28/2011)
July 28, 2011 at 4:27 am
ajsnyman (7/28/2011)
So when the primary server dies, so we can just attach the...
July 28, 2011 at 4:20 am
ajsnyman (7/28/2011)
The DAS enable each server to access the DB as if it was on a harddrive in the server it self.Thus sharing the same data 🙂
I am not sure...
July 28, 2011 at 4:06 am
How would data get copied from one server to the other?
I think you would be better off dropping the custom idea, and simply implement database mirroring
July 28, 2011 at 3:53 am
Yes pretty much the second set of steps you outlined.
Insert data into a staging table,
then do a set based update based upon the primary key that joins them,
this...
July 28, 2011 at 3:03 am
There are a few ways of doing this,
one way is to write an update or delete statement in the ole destination and use this in the dataflow, ...
July 28, 2011 at 2:36 am
to scale our web application out (millions + hits a day) we designed one central database that held all the write information and then this data was replicated out to...
July 27, 2011 at 8:57 am
Viewing 15 posts - 286 through 300 (of 2,268 total)