Viewing 15 posts - 181 through 195 (of 1,412 total)
Ok, then the easiest way would probably be to add a table with alternate texts for lookup values as Remi suggested above.
October 13, 2005 at 12:23 am
The question is though, do you also need to remember which description of the lookup value the user chose? That would have implications on which design to use.
October 12, 2005 at 8:23 am
Of course if the columns are char(4) and char(2) (and I would not be surprised if they are) then you could simply do:
WHERE yearcolumn + monthcolumn BETWEEN '200501' AND '200510'
The...
October 12, 2005 at 7:12 am
VS probably thinks it looks strange to have a unique constraint with only two possible values. Yes, the other columns increase the amount, but for two specific values of those...
October 12, 2005 at 7:10 am
Actually, AWE would not even be used. SQL Server would ignore it when starting on a server with <=4GB RAM.
October 12, 2005 at 7:07 am
Simple recovery mode does not mean things are not logged. It only means that the log can be truncated after a checkpoint. If an application is inserting a huge number...
October 12, 2005 at 5:50 am
Rudy, I did not say anything about how the rows are stored. I said that SQL puts meaning to the order in which you specify columns for a table. For...
October 11, 2005 at 4:15 pm
October 11, 2005 at 7:41 am
Aha. Yes, with Open File it seems that you get a Connect dialog every time. However if you press Ctrl+N, or New Query, then that will open a new empty...
October 11, 2005 at 5:33 am
I assume what you are asking is how to insert a new row into users_master and in the same transaction insert a row (or many) into users_personalinfo, using the same...
October 11, 2005 at 5:24 am
Have your application do this in batches. Read a number of rows into a disconnected recordset, process the numbers and write the results to a file. When you are done,...
October 11, 2005 at 3:57 am
You can use xp_cmdshell for all kinds of interaction with the shell. Using something like EXEC master.dbo.xp_cmdshell 'echo %FOO%' you can get the value of an environment variable called foo....
October 11, 2005 at 3:52 am
Viewing 15 posts - 181 through 195 (of 1,412 total)