Viewing 15 posts - 91 through 105 (of 398 total)
Have you consider a view with union in it?
March 3, 2005 at 4:15 pm
check view syslogins confirms that.
March 3, 2005 at 4:05 pm
Than add 2 into line length.
March 2, 2005 at 7:57 pm
in DTS, set Row delimiter as <none>
March 2, 2005 at 7:21 pm
select COLUMN_NAME from INFORMATION_SCHEMA.CONSTRAINT_COLUMN_USAGE a
where exists(select * from INFORMATION_SCHEMA.TABLE_CONSTRAINTS b where CONSTRAINT_TYPE = 'PRIMARY KEY'
and a.CONSTRAINT_NAME = b.CONSTRAINT_NAME)
and TABLE_NAME = 'your table name'
March 2, 2005 at 5:30 pm
If there is only one PRContactAssoc.wbs1 for each Contacts.ClientID/PRContactAssoc.Role then GROUP BY PRContactAssoc.WBS1, Contacts.ClientID, PRContactAssoc.wbs1
To check it is the case try
SELECT
PRContactAssoc.wbs1, Contacts.ClientID, PRContactAssoc.Role, count(*) From PRContactAssoc
Inner Join
Contacts
on
PRContactAssoc.ContactID = Contacts.ContactID
WHERE
Contacts.FirstName not...
March 2, 2005 at 4:32 pm
Had similar experiences.
Try IP address of server A instead of name.
March 2, 2005 at 4:13 pm
From knowledge base
SQL Server does not allow you to attach a single file of a database that contains multiple files. The attach looks for all files that belong to the...
March 2, 2005 at 3:54 pm
Server Network utility is for manage server net library, while client is for client. One can just install client to connect to sql server.
Server and client can be configured differently....
March 2, 2005 at 2:46 am
isqlw provides much more options than BCP.
March 1, 2005 at 9:55 pm
convert(varchar, "dbo"."TimeD"."Timed_Date", 103)
If not work, install service pack.
March 1, 2005 at 9:51 pm
One of cases needs full refresh is the data changes. Some applications do change historical records.
March 1, 2005 at 5:03 pm
Member Name Column is the one should be changed.
March 1, 2005 at 4:55 pm
Viewing 15 posts - 91 through 105 (of 398 total)