Viewing 15 posts - 3,826 through 3,840 (of 7,429 total)
Thank you and thanks for pointing out my error on the first one. Helps to have more than one set of eyes on a task always.
December 11, 2002 at 8:15 am
I believe all you are missing is the OUTPUT keyword with the parameters that are accepting OUTPUT. But try this.
declare @out1 varchar(50)
declare @out2 varchar(300)
exec usp_GetDesAndPopup @tablename = 'tblIANMain', @languageID =...
December 11, 2002 at 7:50 am
I believe it is accurate but it is also subjective to various factors. Unless you are running on a system with no load and you use the DBCC processes to...
December 11, 2002 at 7:44 am
I think SQL pulls some odd crap sometime. The adding a column with a default of 0 with ALTER should have done just as quick. So obviously it does something...
December 11, 2002 at 7:37 am
Try this for the procedure side.
CREATE PROCEDURE usp_GetDesAndPopup
@tablename sysname,
@languageID int,
@entityID int,
@Descriptionvarchar(100) OUTPUT,
@PopupTextvarchar(100) OUTPUT
AS
SET NOCOUNT ON
DECLARE @sqlstr nvarchar(2000)
SET @sqlstr = 'if exists (SELECT @Description = [Description], @PopupText = PopupText FROM EDB.dbo.'...
December 11, 2002 at 6:41 am
Trying to get to a point here now where we will be able to seperate all our online apps to their own servers. In the past on some I have...
December 11, 2002 at 6:07 am
I haven't had a need for this myself so had not explored. But seeing it here gives me an idea what to do if I ever do need. Good article.
...
December 11, 2002 at 6:00 am
If you knwo roughly when it is occurring everyday do a general trace on SQL statments begining with Profiler. This way you can get the order of events occurring that...
December 11, 2002 at 5:36 am
Try this using a Stored Procedure
if exists (SELECT [Description2],PopupText2 FROM @tablenameTranslation WHERE EntityID2 = @entity AND languageID = @languageI)
begin
SELECT [Description2],PopupText2 FROM @tablenameTranslation WHERE EntityID2 = @entity AND languageID = @languageI
end
else
begin...
December 11, 2002 at 4:27 am
If this is the first time it is hard to say. I recall seeing this mentioned happening before during the population of the Fulltest search. However you need to get...
December 11, 2002 at 4:23 am
Write a simple VBS file like so.
MsgBox "Test"
And save as test.vbs
Double click and see if runs.
If you get a similar eror or don't see the message box with Test popup...
December 11, 2002 at 4:13 am
I am trying it now just to see for myself. I find it simple to use but missing a few features or more specifically comparision option settings, and even more...
December 11, 2002 at 3:59 am
Could be a number of things. I am not really sure the CPU time is accurate thou as I see various results that I cannot get a picture of anywhere...
December 11, 2002 at 3:52 am
Viewing 15 posts - 3,826 through 3,840 (of 7,429 total)