Viewing 15 posts - 6,241 through 6,255 (of 7,501 total)
this may be an OLEDB error :
did you check http://discuss.develop.com/archives/wa.exe?A2=ind0012&L=oledb_dev&T=0&P=165
June 15, 2006 at 5:12 am
1) oracle uses versioning, whilst sqlserver uses locking.
Only when updated/deleted, a lock will be placed in Oracle.
2) what kind of isolation level are you using. In many cases read...
June 14, 2006 at 11:52 pm
June 14, 2006 at 7:24 am
June 14, 2006 at 7:24 am
this may solve your problem.
http://support.microsoft.com/default.aspx?scid=kb;en-us;906954
June 14, 2006 at 7:23 am
select datediff(dd,'2006-01-01', getdate()) gives you the number of days.
If you want weekdays(mo-fr) you would have to make your own function like this one :
CREATE FUNCTION dbo.udf_convert_date2WeekRange (@RefDate datetime, @FirstLast char(1)...
June 14, 2006 at 6:38 am
- was the database detached in a propre way ? (detatchdb ...)
- you may be better off with backup/restore
June 13, 2006 at 7:28 am
add startup parameters -T1204 and T3605 to your sqlserver's parameters.
or execute dbcc traceon(1204, 3605, -1)
This way you get deadlockinfo in your sql server logs.
June 13, 2006 at 3:42 am
If you fetch/arrange me a ticket too, I'll even wear that tricky colored T-shirt from last year at Dallas ![]()
Can you pass me some...
June 13, 2006 at 3:31 am
maybe you could try to start sqlserver with minimal configuration using startup parameters from the commandline.
sqlservr.exe -f
check out "sqlservr Application" in books online.
June 12, 2006 at 8:08 am
is it running behind a firrewall or in another domain than the client ?
May 31, 2006 at 4:24 am
can you see the server in the serverlist when you try to register it in SQLserver management console ?
May 31, 2006 at 3:54 am
Did you check case sensitivity ?
If your server is installed case sensitive, .. your userId and password are also case sensitive !
avoid trailing blancs in passwords !
May 31, 2006 at 3:47 am
- how are you trying to connect ? Windows authenticated or SQL-authenticated ?
- can you ping the sqlserver ?
May 31, 2006 at 2:07 am
Drop / Create will be your only solution.
maybe this script can gat you on track :
set nocount on
print 'Linked Servers voor [' + @@Servername + ']'
print '------------------- ***********'
if not...
May 31, 2006 at 1:06 am
Viewing 15 posts - 6,241 through 6,255 (of 7,501 total)