Viewing 15 posts - 9,586 through 9,600 (of 26,489 total)
churlbut (9/13/2012)
Here is an excellent article from 2008:http://www.sqlservercentral.com/articles/Integration+Services+%28SSIS%29/64585/
Shall we make this easier for others?
http://www.sqlservercentral.com/articles/Integration+Services+%28SSIS%29/64585/
September 13, 2012 at 2:19 pm
Can we ask why it has to be processed record by record?
September 13, 2012 at 2:15 pm
I seem to recall a systems person at another employer talking about rogue switches/routers causing issues as well. Some individual(s) had brought in personal route/switch (linksys, for example) to...
September 13, 2012 at 1:57 pm
Third party backup tools that can accomplish the compression/encryption for you.
September 13, 2012 at 1:55 pm
Brandie Tarvin (9/13/2012)
SQLCrazyCertified (9/13/2012)
September 13, 2012 at 12:54 pm
Well, that's part of it. What about DNS servers, routers, switches, etc?
September 13, 2012 at 12:44 pm
scogeb (9/13/2012)
Eugene Elutin (9/13/2012)
SELECT column1,'99' [a],left(column2,2) , max(column3) [c], 'Yes' [d], 'Test' [e]
,ltrim(rtrim(column1))+ltrim(rtrim(left(column2,2))) as test
INTO #pre1 ...
September 13, 2012 at 12:09 pm
When did the system start to freeze? Would need to go back and check to be sure, but iirc you say nothing has changed when it started happening? ...
September 13, 2012 at 11:48 am
Until you have a failover. When I setup database mirroring in SQL Server 2008 at a previous employer I had to have the maintenance routines setup on both the...
September 13, 2012 at 11:42 am
Is this server the only server running SQL Server?
September 13, 2012 at 11:33 am
m.henly (9/13/2012)
Thanks for the post, off now till friday afternon (gmt) so will have a look and respond after i have abrorbed.
Cheers,
...
September 13, 2012 at 11:31 am
The timestamp can also be used to implement optimistic locking. When you read a row of data you also read this column. After the application makes updates, to...
September 13, 2012 at 11:30 am
I have to ask, is SQL Server the only component being monitored at this time? Just a gut feeling, but I am having a hard time believing this is...
September 13, 2012 at 11:24 am
Be interested in seeing your final query and the function. Pretty sure you are thinking scalar function, but keep in mind that will give you a hit performance wise....
September 13, 2012 at 11:20 am
If you have a test or development server where you can do some playing with the code, give the following a try:
drop function [dbo].[BoxedStock];
go
create function [dbo].[BoxedStock] ( @lModelId int)
RETURNS...
September 13, 2012 at 11:04 am
Viewing 15 posts - 9,586 through 9,600 (of 26,489 total)