Viewing 15 posts - 901 through 915 (of 1,186 total)
Have you tried opening the sp via EM and pasting the code in then saving ???
July 27, 2004 at 3:33 pm
There is a limitation and that is 8000. Straight from BOL:
Use the string concatenation operator (+) to create large strings for dynamic execution. Each string...
July 27, 2004 at 5:59 am
Try adding GO between the PK re-creates and each other and the ALTER TABLE/COLUMN statements:
ALTER TABLE....
GO
RECREATE PK
GO
RECREATE PK
GO
The sp might just want some attention....
July 27, 2004 at 5:56 am
Don't know how to do it in field def. Why not write the code to always UPPER(textbox.value)?????
July 26, 2004 at 1:43 pm
Create 2 different views. 1st to provide the hours difference and the 2nd to pull the information from the 1st view
July 26, 2004 at 5:11 am
umm.. What kind of hardware are you performing this stree test on?? My computer looked at it and promptly turned itself off. I would look at changing the TABLE variables...
July 23, 2004 at 5:19 pm
try setting up the 2 servers as "Linked Servers" to each other or from just one side. This way you could do
SELECT * FROM LinkedServerName.DatabaseName.Owner.Table
This would allow you...
July 23, 2004 at 5:14 pm
Try changing the ADODB cursorlocation to be adUseClient. Then you should be able to get a recordcount. The problem is the recordcount uses client always and when the cursor location...
July 23, 2004 at 12:47 pm
Heres another tack on how to check snapshot-style daily. Put this in a sp and enjoy
SET NOCOUNT ON
DECLARE @DatabaseName varchar(128)
--
-- Create temp...
July 23, 2004 at 12:43 pm
Are you using any dynamic SQL i.e. EXEC @SQLCommand or EXEC sp_executesql @SQLCommand type coding?
Without seeing a snippet of the code that might be a reason. Another might be depending...
July 23, 2004 at 5:09 am
There are several different ways of doing this. I would look at trying to create a view that would do something like:
CREATE VIEW vwInsertRecords
AS
SELECT t1.*
FROM tmpTable t1
LEFT...
July 23, 2004 at 5:07 am
Create either 2 different UDL connections or 2 different SQL Server OLE DB connections.
Each of these can be configured differently. Granted with this approach you will need to write either...
July 23, 2004 at 5:03 am
bondada,
I think the problem lies with the call to the 1st sp. Inside the 1st sp is where the problem comes in....... I think it is because the trans...
July 21, 2004 at 5:33 pm
Have you tried to reset your connection ipconfig /release_all????
and try again
July 21, 2004 at 3:31 pm
I'll throw this out for fun...
July 21, 2004 at 4:26 am
Viewing 15 posts - 901 through 915 (of 1,186 total)