Viewing 15 posts - 4,546 through 4,560 (of 13,460 total)
we don't know what your preferred programming language is;
here's a link to an article on how to make a registration form in asp.net;
if you prefer php or something else, just...
Lowell
October 19, 2012 at 12:27 pm
--three char table: bigger range
CREATE TABLE X(XID INT IDENTITY(1,1) NOT NULL PRIMARY KEY CHECK ((XID> 0) AND (XID < 17577)),
XCALCULATED AS
CHAR(((XID -1)/...
Lowell
October 19, 2012 at 12:10 pm
besides Seans sage advice, noone on your side has thought through possible max values, right?
if you force a min length of 3 characters, and also a max length of three...
Lowell
October 19, 2012 at 11:34 am
if just the IP, is specified, then the instance that answers is whatever is listening on Port 1433.
you can see it in SSMS by connecting to each instance and finding...
Lowell
October 19, 2012 at 8:02 am
sql-lover (10/19/2012)
Apologies,
Maybe I am not following, or I am not explaining myself properly, but I do not see the reason why we cannot elaborate an answer with the two column...
Lowell
October 19, 2012 at 7:33 am
http://translate.google.com (10/19/2012)
{Does} Sql Server 2012 Express have quantity limits in the execution of processes in the database and user concurrent access?Thanks for the help.
Elkin Ortiz
Medellin, Colombia
Lowell
October 19, 2012 at 7:08 am
skb 44459 (10/19/2012)
Another Quick Question. My Email body is very long.
Ideally i would like to store the Body in a text file and read the text file...
Lowell
October 19, 2012 at 7:05 am
here's an example of what you are asking;
you'll have to use a cursor if you want to send emails on a per-email basis from the data.
remember that when you assign...
Lowell
October 19, 2012 at 6:20 am
Ratheesh.K.Nair (10/19/2012)
Can we downgrade SQL server version? Example 10.50.2861 to 10.50.2789
you would have to uninstall 8 different cumulative updates, it looks like to me:
from http://sqlserverbuilds.blogspot.com/
see the number of rows different...
Lowell
October 19, 2012 at 5:59 am
sql-lover (10/18/2012)
Like I explained, the PK is a surrogate key. MS-SQL needs to generate the key itself, no manual intervention.
The real tables are more complex. I just simplified it using...
Lowell
October 19, 2012 at 5:14 am
sql-lover (10/18/2012)
Cannot insert explicit value for identity column in table 'MyTable_A'...
Lowell
October 18, 2012 at 3:01 pm
ok i can do an instead of trigger;
here's a simple version of your example:
note how the isnerts into Table_A ignore whatever was passed for the c2 column
CREATE TABLE dbo.MyTable_A
(
...
Lowell
October 18, 2012 at 2:16 pm
well, you identified the fix: creating an INSTEAD OF TRIGGER on the view, that inserts the data into the "right" table.
but if you don't want to use a trigger, then...
Lowell
October 18, 2012 at 1:33 pm
a couple of prerequisites:
install the AccessDatabaseEngine_x64.exe from microsoft:
http://www.microsoft.com/en-us/download/details.aspx?id=13255
make sure you open an Administrative command prompt window, and run it with the c:\Downloads\AccessDatabaseEngine_x64.exe /passive
command line flag;
this will force the...
Lowell
October 18, 2012 at 1:02 pm
I'm not going to explain why something doesn't work, but i will show you how i handle it.
SSMS has the ability to call keyboard shortcuts, which call a procedure of...
Lowell
October 18, 2012 at 12:53 pm
Viewing 15 posts - 4,546 through 4,560 (of 13,460 total)