Viewing 15 posts - 6,091 through 6,105 (of 7,501 total)
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
- did you create the parameters in your app of the same type and length as for the sp ?
- are the parameters used in the sp of the same...
September 12, 2006 at 5:15 am
It is the only way !
When you generate the script for it with EM, you'll see it starts with dropping the relationship(s), dropping the PK, creating the PK and recreating...
September 12, 2006 at 12:19 am
FYI to solve linked server issues sql2005 to sql2000 sp3/sp4
--
-- KB ref at http://support.microsoft.com/default.aspx?scid=kb;en-us;906954
--
September 12, 2006 at 12:06 am
just a litle thought... ![]()
wouldn't this be easier to get a first glimp of what the last query is doing ?
SELECT
RA
September 8, 2006 at 8:07 am
... Picture no stored procedures, sql server viewed somewhat as a dumb shoe box ...
They must have a raising TCO ![]()
People tend to...
September 8, 2006 at 2:38 am
First of all : don't panick ![]()
If you still have a copy of the sql2000 (or a backup of it):
have a look at
September 8, 2006 at 12:50 am
can you post the sqlagent.out file ?
All our sqlagent's are served using a windows account.![]()
September 8, 2006 at 12:31 am
you may want to have a look at :
i.e. SQL Server 2005's Undocumented Solution for Unattended Installs
September 8, 2006 at 12:22 am
Aarch yes.... the hotfix is "AWE hotfix SQL2000-KB899761-v8.00.2040-x86x64-ENU"
KB904660 has more on the cumulative hotfix.
September 7, 2006 at 7:47 am
Viewing 15 posts - 6,091 through 6,105 (of 7,501 total)