Viewing 15 posts - 316 through 330 (of 921 total)
Because they were created in the model database?
--Jonathan
December 19, 2003 at 11:26 am
I think the real problem is that the schema violates Codd's Information Rule by having identifiers (i.e. table names) connote information. That's why you now need cursors, dynamic SQL,...
December 19, 2003 at 11:24 am
You can't use a FOREIGN KEY constraint, but you can create a CHECK constraint with a UDF that references objects in another database.
--Jonathan
December 19, 2003 at 8:19 am
quote:
But do we need /3GB in the .ini file for window 2000 advanced server?Thanks
feifei liu
You...
December 19, 2003 at 8:05 am
Your query would be faster, smaller, and more easily maintained if you put the values in a table and join to that table rather than using a list with IN().
--Jonathan
December 19, 2003 at 8:01 am
quote:
I didn'tdesign the schema - I inherited it. We do have a members table with a memberid for each person and a...
December 19, 2003 at 7:46 am
AFTER is the default behavior, so both your triggers are equivalent.
--Jonathan
December 19, 2003 at 6:33 am
You probably haven't given the service account the right to lock pages in memory. Check the local policy.
--Jonathan
December 19, 2003 at 6:30 am
We're in the process of hiring another consultant to specialize in financial software. We find it worth something if this person has a CPA (that's the US professional accounting...
December 19, 2003 at 6:25 am
Many problems with these scripts:
December 19, 2003 at 6:03 am
SELECT PARSENAME(REPLACE(Col1,'-','.'),1) txt
FROM YourTable
ORDER BY txt
SELECT RIGHT(Col1,CHARINDEX('-',REVERSE(Col1))-1) txt
FROM YourTable
ORDER BY txt
--Jonathan
December 18, 2003 at 12:53 pm
The easiest way I've found is to use SQL-DMO, but it's not trivial.
--Jonathan
December 18, 2003 at 8:27 am
quote:
thanks both worked..probably using temp tables was the idea.There is one more thing
In my other form's query I have
select (col1/col2) as Amt...
December 18, 2003 at 8:13 am
First back up the tran log. Restore the most recent full backup with no recovery. Then restore the most recent differential backup with no recovery. Restore the...
December 18, 2003 at 6:15 am
Viewing 15 posts - 316 through 330 (of 921 total)