Viewing 15 posts - 5,431 through 5,445 (of 7,505 total)
So exec Sp_Cycle_ErrorLog or dbcc errrorlog do not work using Query analyser.
Did you also perform a checkpoint using Query analyser ?
If none of the above work, I guess you're...
November 30, 2007 at 3:41 am
Books online explains it !
A user can set a savepoint, or marker, within a transaction. The savepoint defines a location to which a transaction can return if part of the...
November 30, 2007 at 1:56 am
no !
Savepoints only work within your transaction.
(check BOL)
You'll need to search for other solutions to minimize your locking elaps time.
- Try to optimize setbased handling of your data.
- AVOID cursors
-...
November 30, 2007 at 12:40 am
you'd be better off keeping the presentation issues at the presentation layer ! (So handle it in your vb app. or whatever, maybe simply even use the clientside settings...
November 30, 2007 at 12:35 am
check the SPN ! if you rely on kerberos authentication.
the service principal name also includes the portnumber of your sqlserver.
Check the sqlserver error log for the spn message at startup...
November 30, 2007 at 12:25 am
as you have noticed, SQLServer does not work like MSaccess :sick:
As suggested by the previous responders, using columaliasses in your view will be the only solution. (view column names must...
November 30, 2007 at 12:20 am
- first be sure you have other access as sysadmin (windows or another user)
- just give it a password you cannot remember (mixture and very long) 😉
- Create a...
November 28, 2007 at 10:44 am
the error means there is dat in your column that it cannot convert to a valid date.
select case when yourcol = '' or yourcol is null then null
...
November 28, 2007 at 10:39 am
been there ... done that .... wrote the article :w00t::cool:
Sometimes it's these litte things that make the day 😉
November 28, 2007 at 2:18 am
use Books Online !!!
it states :
Important:
ntext, text, and image data types will be removed in a future version of Microsoft SQL Server. Avoid using these data types in...
November 27, 2007 at 5:18 am
in many case it will work, in others it won't.
Start with SQL2005 upgrade adivsor !
Test - Test - Test
November 27, 2007 at 5:15 am
if you can join the objects it may be pritty easy
begin transaction
update T1
set col1=T2.colx
from mytable T1
inner join myothertable T2
on T1.mycol = T2.mycoltoo
where
is it ok ?
-- rollback tran...
November 27, 2007 at 5:14 am
thanks for the feedback.
I'm glad you got it working.
November 27, 2007 at 3:33 am
you've missinterpreted the way "exists" work.
In your case it should be :
SELECT distinct section_code, source, section_name
FROM special_sections SpS
WHERE NOT EXISTS (SELECT *
FROM SPECSECTIONS S...
November 27, 2007 at 1:05 am
Viewing 15 posts - 5,431 through 5,445 (of 7,505 total)