Viewing 15 posts - 6,886 through 6,900 (of 7,472 total)
also take a look at KB 832674 (hotfix available !)
August 12, 2004 at 12:16 am
If you want to create proc SP_ADD_SCRAP_EXCEPTION_REVIEW2
from within SP_ADD_SCRAP_EXCEPTION_REVIEW1,
you'll have to use exec(@sql).
Else
put a GO before the second create proc statement
end if
August 11, 2004 at 5:53 am
Found it !
Define your @sql variable varchar(500).
It is now defined to short !!
Declare @sql varchar(100)
Set @repIds = 'Z30'
Set...
August 11, 2004 at 1:22 am
how about :
EXEC master..xp_logininfo @acctname = 'yourdomain\yourgroup',@option = 'members'
August 11, 2004 at 1:16 am
cmd.Parameters.Append cmd.CreateParameter ("@TableName",adChar,adParamInput,3,"Z30")
vs
CREATE Proc LateResponses(@stableName char(3),@idCount int output,@idList varchar(500) output)
should give a unknown parameter.
Because you dynamicaly define the cursor, your users will have...
August 11, 2004 at 1:14 am
did you refresh all views that might have used the column with the datatype ?
August 9, 2004 at 8:24 am
How about this :
Create Function dbo.udf_Get_Nth_DayNo_After
( @Start_DateTime AS datetime
, @End_DateTime AS datetime = '9999-12-31'
, @SearchDayNr as tinyint = 1
, @nth as tinyint = 1
, @hh_time as char(2) =...
August 9, 2004 at 2:41 am
Lets assume speed is the issue and the FK-cannot be touched over here and
Sheilesh Paliwal cannot wait until the normal maintenance time.
Maybe...
August 9, 2004 at 12:10 am
maybe you'll find your answer overhere : http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=8&messageid=127910
August 6, 2004 at 3:41 am
Check the connection objects to the server who's sa-pwd you've changed in your dts-packages !
After you altered the sa-password, did you stop/start that server's sqlagent ?
August 6, 2004 at 3:13 am
In EM :
Tools / Options / advanced :
you can set : - Login timeout
- Query timeout
- packet size
August 5, 2004 at 1:04 am
Create the PK in line with the create table statement.
create table #tmpMytable (col_id integer not null primary key
, col2 datetime not null default getdate()
, .... )
or
create...
August 4, 2004 at 12:28 am
Can you have them using a view ?
if yes, provide a view like this :
Create myschema.myview
as
select mycol1,..
from myschema.mytable (NOLOCK)
This way they will not lock the rows...
August 4, 2004 at 12:16 am
as you have noticed NULL <> ' '
If there is no symantic difference for your schema and apps, avoid the NULL.
August 3, 2004 at 2:11 am
Thanks for the good advice Offcourse one has to choose a wife who enjoys the bike as well
August 1, 2004 at 2:09 pm
Viewing 15 posts - 6,886 through 6,900 (of 7,472 total)