Viewing 15 posts - 4,951 through 4,965 (of 5,103 total)
Do you really need JPEG?
PDF is a very good and simple alternative with a lot of supporters
Just My 2 cents
December 6, 2003 at 7:02 am
quote:
CREATE TRIGGER t_ui_CustShippersON CustShippers
FOR INSERT, UPDATE AS
IF UPDATE([Default])
BEGIN
IF EXISTS (
SELECT *
FROM CustShippers ...
December 6, 2003 at 6:45 am
quote:
I think I have found that with sp's the default is that the users permissions in the target database are set...
December 5, 2003 at 6:46 pm
HTTP 500 - Internal server error
I do speak spanish but can't access it.
December 5, 2003 at 6:32 pm
Declare @varlist varchar(255)
Set @varList = ',1,2,3,5,' -- Commas before and after
Update tempSalesDetail
SET BTI = 1
WHERE CHARINDEX(',' + Convert(varchar, tempSalesDetailID) + ',', @varList) > 0
Note this is good for "small"...
December 5, 2003 at 6:27 pm
I am still curious about your 75 Million rows
I would like to know the performance of the query posted using sp_excecutesql @str with the hard coded numbers in @str....
December 5, 2003 at 6:13 pm
nope.
use separate files so you have total control on what stays and what goes away
December 5, 2003 at 5:34 pm
and make sure the PASSWORD is STRONG enough because if that is a concern dictionaries attacks run very fast on sql server!
December 5, 2003 at 5:32 pm
100% with brian the Default database for the login used to connect was dropped! as amtter of fact on my enviromet all logins are mapped by default to tempdb so...
December 5, 2003 at 5:22 pm
I would add a unique constraint on
(Customer_Name, Ship_Location, Shipper, Default)
One thing though instead of real names you may want to use foreign keys to look up tables for ship_location...
December 5, 2003 at 5:01 pm
quote:
quote:
--------------------------------------------------------------------------------
quote:
--------------------------------------------------------------------------------
Quick brainteaser for our beginning DBA's: what's the quickest method to strip out the time from a DATETIME field (returning...
December 5, 2003 at 4:46 pm
quote:
gljjr While using the "All" keyword will seem to do what you want a more reliable solution would be something...
December 5, 2003 at 1:59 pm
quote:
Quick brainteaser for our beginning DBA's: what's the quickest method to strip out the time from a DATETIME field (returning only...
December 5, 2003 at 1:34 pm
Viewing 15 posts - 4,951 through 4,965 (of 5,103 total)