Viewing 15 posts - 6,061 through 6,075 (of 7,481 total)
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
because you use SQL2005 you can capture very nice execution plan information !
Don't get frightened because they are XML, have a look an you may be surprised how much info...
September 13, 2006 at 2:58 am
you can also use xp_cmdshell to run isql scripts :
declare @myISQLString varchar(5000)
set @myISQLString = 'isqlw -E -S yourserver -d yourdb -i "yourscriptpathandfile" -o "yourresultpathandfile"'
exec master.dbo.xp_cmdshell @myISQLString
September 13, 2006 at 1:18 am
yes
yes
It's your codelibrary that has to be 64-bit, so no change in data.
September 13, 2006 at 1:07 am
how about :
select [Meeting Start]
,[Meeting End]
,[MeetingTitle]
from Reservations
where [Meeting Start] between dateadd(dd, (-datepart(dw,@yourdt) + 1), @yourdt)
and dateadd(dd, ((8)-datepart(dw,@yourdt) - 1), @yourdt)
September 12, 2006 at 6:06 am
this proc may ease your work ...
-- TEST IT - TEST IT --
Create procedure Spc_ALZDBA_PK2NonClustered
@ParentTbName varchar(128)
, @ParentTbOwner varchar(128) = NULL
, @Commentaar varchar(128) = ''
as
-- Declare @ParentTbName varchar(128)
-- , @ParentTbOwner...
September 12, 2006 at 5:54 am
Viewing 15 posts - 6,061 through 6,075 (of 7,481 total)