Viewing 15 posts - 30,451 through 30,465 (of 39,821 total)
It really is a slowly changing dimension, but in an OLTP system, I think it fits more as an auditing item as Jeff mentioned.
I'd store it separately as it's entered...
December 9, 2007 at 1:08 pm
varchar is not Unicode.
You can change the data type, but any unicode data would be lost or cause errors during the conversion. Only the N data types (ntext, nvarchar, nchar)...
December 9, 2007 at 12:40 pm
I have seen this before and it is frustrating. Try a stored procedure and see if you can get it to behave better. Also, are you executing the same query,...
December 9, 2007 at 12:39 pm
Very interesting link. Did it help? Are you XP -> XP?
I haven't seen this error, but the guest user makes some sense.
December 9, 2007 at 12:38 pm
Or let us know what ytou are trying to achieve. Are you looking to admin? develop software? What areas are you thinking you need to learn.
December 9, 2007 at 12:35 pm
If it's true/false, then don't allow NULLs. confuses things.
I'd still recommend going with tinyint, gives you more options down the road. I've often seen someone define something a boolean, only...
December 9, 2007 at 11:26 am
I was thinking that the only way to do this was to query for known user and then strip out the domain name.
There are some AD stored procedures, but they...
December 9, 2007 at 11:24 am
Thanks for the update and glad it appears to be working.
And kudos again for using SQL Server at UCF!
December 7, 2007 at 11:18 am
You don't need the ELSE clause. If the parameter is not null, it's value will be already assigned.
December 7, 2007 at 11:17 am
Do you care which 4000?
You could insert 4000 PKs from the patient table into some new table, then set up a replication that filters based on those PKs. Or copy...
December 7, 2007 at 11:16 am
You might run PRofiler and filter based on the db, table, or some other object that you think is involved. Or just run it and then stop it when you...
December 7, 2007 at 11:15 am
December 7, 2007 at 11:13 am
I think this is a distributed transaction problem. Is there any reason you have it wrapped in a transaction there? Any error should throw a rollback anyway.
Does it complete? Could...
December 7, 2007 at 11:12 am
Almost went to Earl for an old car, but couldn't bring myself to do it.
We're POTS here (With DSL riding along). Still find uses for the line, especially as so...
December 7, 2007 at 11:07 am
clustered keys and primary keys have nothing to do with each other. the PK can be clustered or non-clustered and if someone thinks it's always clustered, either he doesn't understand...
December 7, 2007 at 10:14 am
Viewing 15 posts - 30,451 through 30,465 (of 39,821 total)