Viewing 15 posts - 976 through 990 (of 2,085 total)
I had the same error when using a defect install media (corrupted/incomplete iso).
With a good iso: no problems at all
May 18, 2010 at 7:21 am
It was the connection option numeric round_abort (Database Properties > Options > Numeric Round-Abort)
Would also work with end result numeric (30,18)
*Probably in combination with Cumulative hotfix 7
May 17, 2010 at 6:27 am
Thanks, I'll try uninstalling Cumulative 7 when I get approval.
May 14, 2010 at 12:40 pm
SQL Server probably needs an extra object with rowinformation (primary key, (non)unique index) in order to enable rowlocking.
With no index, sql server can only lock the table/page as a whole...
May 14, 2010 at 6:12 am
Got it working using
sp_addlinkedserver @server = 'SRVEXTRA'
, @srvproduct = 'SQLSERVER'
, @datasrc = 'BRANDNEW\SRVEXTRA'
...
March 12, 2010 at 2:35 am
In other words.
There is an application MyAPP thats needs info from the database "operation" on server SRVOPS (2000), default instance SRVOPS
It also needs information from database "EXTRA" located on...
March 11, 2010 at 10:14 am
Task manager isn't reliable above 2gb. Try Process Explorer or performance counters.
What does PF stand for? (page faults?)
March 27, 2009 at 5:04 pm
I'm not familiar with DTS nor the "b" parameters.
I suspect that strList is passed as a string instead of a rowset/table. (for the in clause)
Like in ('abc,ddfdfqd,dfdfqdfe')
You can resort to...
March 18, 2009 at 1:41 pm
where does the come from?
March 17, 2009 at 7:41 am
*How to convert this Left([Field3],InStr(1,[Field3]," ")-1)
LEFT([FIELD3],PATHINDEX(' ',[FIELD3])-1)
*Right([Field3],(Len([Field3])-InStr(1,[Field3]," "))) & [Field4]
RIGHT(FIELD3,LEN(LEFT([FIELD3],PATHINDEX(' ',[FIELD3])-1))+[FIELD4]
(if FIELD4 is also character)
March 14, 2009 at 4:06 am
Nice point of view, luckily not all announcements are written is this way.
February 3, 2009 at 4:58 am
Really stupid things in my junior dba-years:
Dropping the wrong table in a 40gb database. Sure I'm on the testserver.
Update without where clause (where's my history table)
January 28, 2009 at 3:40 pm
You could recreate the view on the serverbackend and relink the view afterwards in Access.
This should be done whenever underlying datastructure changes, since views in sqlserver keep the definition of...
December 18, 2008 at 3:07 pm
Viewing 15 posts - 976 through 990 (of 2,085 total)