Viewing 15 posts - 1,081 through 1,095 (of 5,103 total)
RubyRed (6/25/2008)
June 25, 2008 at 1:34 pm
You can have a list of "REGISTERED" servers with the saved connection credentials and then is a matter of double-clicking each one of them. Is that what you are after...
June 25, 2008 at 12:30 pm
Roy Ernest (6/25/2008)
I have a pre-pre deployment server with restricted use to developers. My aim is to let them release their stuff to this server. I have given them...
June 25, 2008 at 12:23 pm
How about :
DECLARE @t table (form_code int, state varchar(20), time_stamp datetime)
INSERT INTO @t (form_code, state, time_stamp)
SELECT 3245, 'Submitted To X','2008-06-06 12:13:25.450' UNION ALL
SELECT 3245, 'Submitted To X','2008-06-06...
June 25, 2008 at 11:48 am
Kwisatz78 (6/25/2008)
I am currently have a requirement to run some code against each table in a database and was thinking of using sp_msforeachtable. However I also have a...
June 25, 2008 at 9:10 am
Are these "update" statememts affecting a lot of rows ?
You should look at how many locks are being generated, probably on the distribution database.
June 25, 2008 at 9:05 am
You will need to probably use SELECT INTO and use the SWITCH statement to move data into the partitioned one. I am not sure though that this can be done...
June 24, 2008 at 2:27 pm
dbirchok (6/24/2008)
I miss understood what you meant by stored procedure replication. I though you meant using stored procedures in table replication. The straight-up...
June 24, 2008 at 2:12 pm
nigel.c.west (6/24/2008)
The answer is .....
You cannot do a DISTINCT when you are already doing a TOP 5, the two are...
June 24, 2008 at 10:20 am
dbirchok (6/24/2008)
1.Your reason for doing one row at a time would...
June 24, 2008 at 10:13 am
You may want to "see" more here
By the way I work with financial data and we use "floats" ๐
June 24, 2008 at 8:51 am
I have seen these things in "generated" queries and they require pretty much a serious re-write or simply just let it happen at "off" hours. If this is the case...
June 24, 2008 at 7:50 am
This:
...
from pilot.dbo.CUSTOMERS
inner join pilot.dbo.COMPDATA on ( pilot.dbo.COMPDATA.COMP = - ( @P43 ) )
inner join pilot.dbo.CUSTTOPICS on ( pilot.dbo.CUSTTOPICS.TOPIC = - ( @P44 ) )
inner...
June 23, 2008 at 4:09 pm
It all depends on "RISK" I have worked for companies with top-line support from Microsoft and They ofcourse would work with the bleeding edge releases. For those others that had...
June 23, 2008 at 3:54 pm
Viewing 15 posts - 1,081 through 1,095 (of 5,103 total)