Viewing 15 posts - 316 through 330 (of 424 total)
look at the post from GSquared regarding the StringParser in this thread: http://www.sqlservercentral.com/Forums/Topic439094-338-2.aspx
with it your statement becomes:
select * from table join dbo.stringparser(@id_list, ',') as list
on table.id = list.parsed
or
select *...
February 19, 2008 at 9:09 am
ejoeyz_85 (2/16/2008)
subquery returned more than 1...
February 16, 2008 at 4:09 pm
remember that if you set ansi_warnings on/off at the db level, you must disconnect/reconnect for the setting to propagate to your session.
February 16, 2008 at 4:07 pm
let's start over. the code you just posted is your from your original post which results in this error: The objects "OrganizationDetail" and "OrganizationDetail" in the FROM clause have the...
February 15, 2008 at 1:06 pm
SEAH SZE YIN (2/15/2008)
The SQL script i posted here is extracted from an existing stored procedure of my system using SQL2000...
February 15, 2008 at 8:03 am
ejoeyz_85 (2/14/2008)
February 15, 2008 at 7:50 am
ejoeyz_85 (2/14/2008)
February 15, 2008 at 6:58 am
insert OrganizationDetail (Org_name, Org_address, Org_tel_no, Org_fax_no, Org_email, Org_description, Type_application_id)
select distinct inserted.Org_name, inserted.Org_address, inserted.Org_tel_no,
inserted.Org_fax_no, inserted.Org_email, inserted.Org_description, OrganizationType.Type_application_id
from inserted inner join OrganizationType on inserted.Type_name = OrganizationType.Type_name
left join OrganizationDetail on inserted.Org_name =...
February 14, 2008 at 1:38 pm
With that many addresses, you might want to look into the USPS address matching system. With it, you can cleanup and standardize mailing addresses, city, state, zips. Once...
February 14, 2008 at 1:29 pm
store only minutes as an integer. you can get hours and minutes with a simple formula.
total_min = (hr * 60) + min
hour = total_min / 60
min =...
February 14, 2008 at 12:34 pm
i have a problem with my trigger.. I have create my trigger to audit Users Table. The problem is, i want use the same trigger to audit other tables... what...
February 14, 2008 at 12:23 pm
I agree with m.earl. If you have a large company, then each application/system should not be (re)defninig employees, divisions, departments, etc. A master database is absolutely required. ...
February 13, 2008 at 6:42 am
you only posted pseudo-code (CATALOG [...] WITH ) so this might be a case of the 'real' code differing slightly from the posted example. and now you're stating that...
February 12, 2008 at 9:21 am
what's the value of serverproperty('IsFullTextInstalled') on the server without fulltext indexed?
i still think there's something odd about your original post, since the create fulltext catalog should have failed. but...
February 12, 2008 at 8:48 am
so, you're saying that this block executes without error:
if (select serverproperty('IsFullTextInstalled')) = 1
Begin
EXEC sp_fulltext_database 'enable'
CREATE FULLTEXT CATALOG [...]
WITH ACCENT_SENSITIVITY = OFF AS DEFAULT
/*
CREATE FULLTEXT INDEX...
February 12, 2008 at 8:28 am
Viewing 15 posts - 316 through 330 (of 424 total)