Viewing 15 posts - 6,076 through 6,090 (of 7,501 total)
hey, hey ... apparently I started a workaround section .....
As you all have seen, there's a remark in huge letters stating "... could cost you your job..."
September 28, 2006 at 2:42 am
- They must have no confidence at all regarding their DBA's.
- If this is a political issue, have it placed back on the agenda ! In case of disaster, problems,...
September 27, 2006 at 7:27 am
is the share granted public read/write ?![]()
September 26, 2006 at 8:07 am
read this : http://support.microsoft.com/kb/224071/EN-US/
September 26, 2006 at 1:59 am
just to add to Eddie Wuerch 's reply :
- also check if you still use the same recovery mode. Maybe even switch...
September 26, 2006 at 1:54 am
I guess you're connected using implicit transactions.
(or use an oledb.begintran statement which switches your connection to "implicit transactions)
![]()
September 26, 2006 at 1:43 am
just to comfort you a bit :
- 1204 and 3605 are set as startup parameters at all our sqlserver instances ![]()
(24/7/ +-365)!
- We switch...
September 22, 2006 at 9:10 am
I tried it, knowing our network is very outdated, and indeed, it chokes quit often.
It's a pitty, you cannot just download it and watch.
It's also a pitty, there isn't...
September 22, 2006 at 9:04 am
Did you check http://support.microsoft.com/kb/280101/
GRANT EXECUTE ON sp_sdidebug TO public
EXECUTE master..sp_sdidebug 'LEGACY_ON'
September 18, 2006 at 12:02 pm
If I'm correct that cannot be done.
You'll be stuck with creating another instance and moving all the stuff.
or drop the instance (off course keep your datafiles (mdf,ndf,ldf !! and script...
September 18, 2006 at 11:55 am
tempdb should return to its starting size when you restart sqlserver.
September 18, 2006 at 11:46 am
SQLServer version and sp / hotfix ?
this may be a documented bug.
September 15, 2006 at 9:00 am
maybe you can consider using this function :
use master
if exists (SELECT ROUTINE_NAME
FROM INFORMATION_SCHEMA.ROUTINES
WHERE ROUTINE_TYPE=N'FUNCTION'
AND ROUTINE_SCHEMA=N'dbo'
AND ROUTINE_NAME = N'fn_ALZDBA_convert_date2WeekRange' )
drop function [dbo].[fn_ALZDBA_convert_date2WeekRange]
GO
CREATE FUNCTION dbo.fn_ALZDBA_convert_date2WeekRange...
September 13, 2006 at 3:33 am
This query may help out .... If you are sysadmin for the sqlserver.
SELECT
ES
.session_id
, ISNULL(
September 13, 2006 at 3:05 am
I forgot to mention ... What kind of trinsaction isolation level are you using for the connection / command ?
SSMS with uses read committed by default.
I guess your application may...
September 13, 2006 at 3:00 am
Viewing 15 posts - 6,076 through 6,090 (of 7,501 total)