Viewing 15 posts - 451 through 465 (of 824 total)
It isn't as simple as that Remi. Let's say you split the data out into Year, Month, and Day columns, we already know that in some cases one or more...
June 28, 2005 at 10:25 am
I wouldn't count on the naming to be consistent using this method. If you need the names to be consistent and predictable, you will need to come up with a...
June 28, 2005 at 10:13 am
The fundamental problem with ANY kind of NULL scheme is that a record in a table (at least a relational table) represents an assertion of fact. It is impossible to...
June 28, 2005 at 10:06 am
Sounds like a security issue to me. Are you using a Windows account or a SQL account to connect? Make sure that the account has access.
June 28, 2005 at 9:16 am
What version of Windows are you running and are both machines in the same domain?
June 28, 2005 at 9:14 am
I would suggest still using a datetime column, but add another column that holds a code we call it DatePrecision. The code tells us how much of the datetime data...
June 28, 2005 at 9:06 am
I wouldn't recommend it, but about the only way to do so is to shut SQL Server down (and it may require a hard shutdown at this point) Once SQL is...
June 28, 2005 at 8:52 am
My preferred solution is to use an "archive table". Your current table would, by definition not have a ThruDate. When a row becomes inactive, DELETE it but use a DELETE...
June 27, 2005 at 4:00 pm
There are really two issues here.
Issue #1 - Natural vs. surrogate keys
Issue #2 - The proper way to generate surrogate keys.
As I have read Celko, he doesn't argue against...
June 27, 2005 at 3:52 pm
I can't say that you don't have a problem, but the pageiolatch_ex just means that there is an exclusive latch placed on databaseID 13, fileID 1, and pageID 6938984. And...
June 27, 2005 at 3:29 pm
If I might borrow an idea from CJ Date...I'd add a 0th rule that would take precidence over the other 4 listed in the article. Rule 0 states "Do not...
June 27, 2005 at 3:14 pm
Peter could still use the view assuming his SELECT statment specified only those columns he has permission to access.
June 24, 2005 at 1:47 pm
My comments weren't meant as a direct criticism of you or anyone else, except Microsoft. I have been far too dependent on direct access to the system tables just like...
June 23, 2005 at 5:08 pm
If your AD admins won't turn on delegation, then the only option you have is to use SQL accounts. Now, you could map a Windows account to a SQL Server...
June 23, 2005 at 10:16 am
I never (k)new objectProperty even existed. BOL needs more "See Alos" links!
There is ServerProperty and DatabaseProperty as well. I think the SQL Server community as a whole is far too...
June 23, 2005 at 9:29 am
Viewing 15 posts - 451 through 465 (of 824 total)