Viewing 15 posts - 1 through 15 (of 119 total)
try a different port number for your mirror endpoint.
HTH
Billy
September 15, 2005 at 5:50 am
not sure if it applies in your case but how about putting an "endtime" filter on your trace; unfortunately it won't allow you to filter on a finer detail (eg....
September 15, 2005 at 1:26 am
use SET DATEFORMAT to explicitly define dateformat when handling dates. (ie. SET DATEFORMAT dmy).
In general, for international settings, dateformats should be handled with care.
HTH
Billy
December 8, 2004 at 12:47 am
how about using the OUPUT parameters to obtain the scope_identity() value?
see below for example:
hth
Billy
--- cut here ---
use tempdb
BEGIN TRAN
GO
CREATE TABLE TX1(THE_ID INT NOT NULL IDENTITY(1,1), TX1USERID VARCHAR(100))
GO
CREATE PROCEDURE spInsert (@TX1USERID...
September 7, 2004 at 1:43 pm
Hi George:
You are correct. The "insert into dd1(tablea_value, tableb_value) values('eee1b','eee1b');" does not include primary Key of table "a". However, that is the essense of the question. Primary Key of Table "a"...
July 16, 2004 at 2:13 pm
not sure if it possible to change a column into identity column after it has been created. BOL does not state this is explicitly though; all references within BOL to...
July 13, 2004 at 9:54 pm
use OBJECTPROPERTY, ExecIsTriggerDisabled property name.
that is...
select OBJECTPROPERTY (OBJECT_ID ('trigger_name'), 'ExecIsTriggerDisabled')
which returns
1 = True
0 = False
HTH
Billy
May 6, 2004 at 2:18 pm
below is link to example of format file:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/adminsql/ad_impt_bcp_9yat.asp
May 5, 2004 at 1:58 pm
and of couse there is also the sp_help stored procedure that will also get you the column name and data type information for a given table.
May 5, 2004 at 1:49 pm
you can query the information_schema views in the current database to get your column names and data types:
see below for example on tempdb database:
use tempdb
select * from information_schema.tables
select * from...
May 5, 2004 at 1:44 pm
the posted syntax looks fine.
for me, the following works:
select * from mycomputer.tempdb.information_schema.columns
April 15, 2004 at 5:22 pm
hmmm.. how about loading all primary keys for SINFORM table produced from the WHILE loop into a table variable or temporary table and then join that table with the SINFORM...
April 15, 2004 at 5:17 pm
thanks for response. this problem is on one of our client's server. I know they have other stuff running on that box but I don't think they installed anything new...
April 8, 2004 at 2:22 pm
check out the following link for more info:
http://www.eventid.net/display.asp?eventid=2019&source=srv
good luck
Billy
March 23, 2004 at 6:36 pm
I checked bol but can't find anything.
I know there is ::fn_trace_gettable but it always returns an error message if the trace has not been stopped yet.
I read somwhere else that...
March 22, 2004 at 5:29 pm
Viewing 15 posts - 1 through 15 (of 119 total)