Viewing 15 posts - 1 through 15 (of 529 total)
Nice article. Certainly something that is forgotten all too often.
Two things to bare in mind :
1. PwdEncrypt is not a very strong encryption method. So to store very sensitive passwords,...
July 14, 2004 at 3:11 am
Obviously, there is no record inserted. But hey, then again, you could get an error because the dboHistoryTable does not exist... Or maybe the dbHistory user is not present, or...
March 4, 2004 at 1:42 am
Don't think this is included. You could the (undocumented) SP_msForEachTable stored procedure to automatically loop through all the tables, getting the count and storing it in a temp table.
After that,...
February 25, 2004 at 7:48 am
February 25, 2004 at 7:39 am
There is no real difference. The DRIDefault object (in DMO) allows you to control the Default constraint you add to a column.
The difference with the Default property of the column...
February 25, 2004 at 4:22 am
Definitely go for the Audit table.
I cannot think of a solution to not build a list of fields.
I can imagine this is cumbersome, but have a look in the Scripts...
February 23, 2004 at 9:53 am
Ooooh, and to answer your question
Don't think it is possible to call a class directly (not from SQL2000 anyway). Yukon promises this, if...
February 23, 2004 at 8:30 am
It is not entirely clear to me what you are trying to achieve...
I would store the encrypted password in the database (unless you need it for something else, of course)....
February 23, 2004 at 8:22 am
This is possible, I think...
Try using the CHARINDEX function to get the position of a space. With that value and the SUBSTRING function, you can get a part of a...
February 12, 2004 at 4:41 am
You have two possibilities :
1. Use the CASE construct in the SUM statements. Using it, you can say to only add the quantity or sales if the date is in...
February 12, 2004 at 4:29 am
Don't think it is possible.
The only way I see is to use a table somewhere to store the values before calling the script.
In the script you can fetch the values...
January 30, 2004 at 3:30 am
To get the number of sales reports for each of the countries, by week, is not too difficult...
January 26, 2004 at 6:42 am
If you're looking for a unique identifier, you could go for a GUID column. That is Globally Unique, so across tables, databases and servers.
Obviously, it is not a 'sequence' number,...
January 21, 2004 at 9:27 am
It shouldn't be too difficult to use Pivot Tables inside a browser. You'll need the ActiveX installed on the client, and it probably only works properly using IE.
Obviously, you'll need some...
January 20, 2004 at 8:01 am
Have you checked the use of CHECKSUM_AGG?
With it, you can calculate a checksum over a complete table or a column. Don't know if it is possible to calculate one over...
January 20, 2004 at 7:00 am
Viewing 15 posts - 1 through 15 (of 529 total)