Viewing 15 posts - 9,196 through 9,210 (of 9,248 total)
installing sql2005 express should be no more than if you were installing another sql2000 instance.
Install a named instance and then remove it when you're done if you want to
July 13, 2008 at 7:21 am
TRACEY (7/12/2008)
How did you get 129
i'm assuming he got it from here
TRACEY (7/12/2008)
Trying to determine what the measurements are in profiler in MG and GIG
Divide by...
July 13, 2008 at 7:16 am
Mani Singh (7/12/2008)
you need to ensure that the folder structure and the drive letter are kept the same.
especially the folder permissions, that applies to SQL whether clustered or not
July 13, 2008 at 6:46 am
DKG (7/12/2008)
As per my understanding log file contains uncommitted transactions only, the transaction which is already committed has gone to...
July 13, 2008 at 6:44 am
are you using redundant HBA's? It would be advisable
July 12, 2008 at 2:58 pm
change this
create proc procname
@subject1 int,
@subject2 int,
@subject3 int,
@result int output
as
set @result = @subject1+@subject2+@subject3
to this
create proc procname
@subject1 int,
@subject2 int,
@subject3 int,
as
declare @result int
set @result = @subject1+@subject2+@subject3
it will only expect 3...
July 12, 2008 at 2:47 pm
are you using a static or dynamic IP address for the windows 2003 server
July 12, 2008 at 1:08 pm
the [] are commonly used to negate SQL keywords.
say you had a column in a table called object_id, to reference it as a column and not a keyword is like...
July 12, 2008 at 5:12 am
this link covers logon triggers
http://technet.microsoft.com/en-us/library/bb326598.aspx
you could have the trigger check the client_host event data using the eventdata function for a known set of addresses and deny logon that way!
of course...
July 12, 2008 at 3:40 am
do you mean deploy a database using a windows form or deploying sql server express using a windows form?
July 11, 2008 at 4:16 pm
to attach the database, copy the files to the desitred location and use the following T-SQL
sp_attach_db 'dbname', 'drive:\path\filename.mdf', 'drive:\path\fiilename_log.ldf'
July 11, 2008 at 4:13 pm
oh OK. There are advantages and disadvantages of both, the following link details rebuild vs drop and create
July 11, 2008 at 3:54 pm
starflyer (7/11/2008)
I didn't feel this stored procedure would choke on a cursor.
couldnt agree with you more
July 11, 2008 at 3:49 pm
i seem to remember this. The first release MS made of SQL 2005 SP2 had a bug with maintenance plans. Get the latest version of the SQL 2005 SP2 and...
July 11, 2008 at 3:25 pm
thats the way i understood it to be
July 11, 2008 at 3:19 pm
Viewing 15 posts - 9,196 through 9,210 (of 9,248 total)