Viewing 15 posts - 6,616 through 6,630 (of 7,466 total)
- Avoid using a cursor !!
Is this what you aim for ?
Declare @MyError int, @MyRowcount int
Update S
SET NAME = REPLICATE( CHAR(65 +...
April 21, 2005 at 12:32 am
- How many times is your trigger fired ?
(I've seen systems that perform an insert and then do a couple of updates to the same row to complete data....
April 19, 2005 at 1:50 am
win2k3 ? MSDTC enabled for remote usage ?
April 14, 2005 at 1:19 am
you'll have to look for negative length parameter used in a substring function.
I've encountered this some times when using "dynamic" substrings based on CHARINDEX.
e.g. select substring(mycol, April 14, 2005 at 12:41 am
there can be tons of reasons why it gets stuck
- how is your linked server defined
- problems with the network ?
- is the...
April 14, 2005 at 12:32 am
Rowversion is a sysnonym for timestamp datatype.
This timestamp-column is (automaticaly) altered every time the row is updated.
What can it do ? Just indicate if the row has been changed since...
April 14, 2005 at 12:24 am
maybe http://www.sqldts.com has the answer.
April 13, 2005 at 11:36 am
Is this job origination from another server ? (check the "target server(s)" pane when you edit the job)
You could try to alter the job so it only runs local, or...
April 13, 2005 at 11:34 am
If you have sqk2k, script the dts-package as visual basic and then search for the DTSStep_DTSExecuteSQLTask_3.
This way you may find your way using the gui to repair/intervene the issue....
April 13, 2005 at 6:27 am
search this site for "reporting service" and you'll find enough to start with
April 6, 2005 at 5:43 am
my 2ct (not knowing the exact buisiness rrule)
select case when day(getdate()) > 14 then
DATEADD(d, -1, DATEADD(m, 1 + DATEDIFF(m, 0, getdate()), 0))
else
convert(datetime,cast(year(getdate()) as char(4)) + '-' + cast(month(dateadd(m,1,getdate())) as char(2))...
April 6, 2005 at 1:27 am
"server=localhot;uid=sa;pwd=;database=Northwind"
I guess you want to connect local.
Try server=.
or server=localhoSt
btw : even on dev/test server it is not wize to have sa-password...
April 6, 2005 at 1:07 am
- first check out who or what is blocking and consuming.
( maybe http://www.sqlservercentral.com/scripts/contributions/111.asp can help)
- Is it just a job or was it a maintenance plan you've deleted ?
April 5, 2005 at 5:00 am
First : start you sp with set nocount on (unless you realy need the rows info)
Why aren't you using a transaction ?
April 1, 2005 at 7:23 am
- view-triggers only fire when the view is being used !
- you could place triggers on the underlying objects
April 1, 2005 at 7:17 am
Viewing 15 posts - 6,616 through 6,630 (of 7,466 total)