Viewing 15 posts - 3,136 through 3,150 (of 7,429 total)
Either setup another table with the possible values and create a relationship (good for a lot of items). Or in EM in the design view of the table right click...
April 18, 2003 at 5:15 am
Also take your long queries and see if you can write other ways that are more optimized to the SQL 2K environment. It may be a engine differnece causing the...
April 18, 2003 at 5:13 am
Have you seen any specific issues?
SQL Server will eat up as much memory as possible based on queries and number of common executions. This is keeping data in memory to...
April 18, 2003 at 5:11 am
The point is that sysdatabases in master can be read by any user who connects. Some apps will not show this but if they do
SELECT * FROM master..sysdatabases
it will...
April 18, 2003 at 5:04 am
Thanks for the info. I am testing a copy I got and was going to install Windows 2003 and try SQL 2K this weekend.
April 17, 2003 at 5:59 am
You leave yuorself vunerable to attacks without an AnitVirus solution.
But if you do install have it set not to scan the MDF, NDF, and LDF files or the backup extension...
April 17, 2003 at 5:56 am
Speed for joins either way in most cases are roughly the same due to the way 32bit architecture handles data comparison.
Developers may find either easier but in general it is...
April 17, 2003 at 5:53 am
You can either create a job with the TSQL code for doin the backup or setup a maintainence plan to handle this.
April 17, 2003 at 5:43 am
I would setup SQL to have a maximum amount allowed so it cannot cram out the OS at all. However, run Profiler to see what major queries happen and you...
April 17, 2003 at 5:42 am
With the engine changes you effectively do not know what else is to be qued and thus the data does not have a meaningfull value with regards to troubleshooting. So...
April 17, 2003 at 5:15 am
Please do not crosspost. See related topic http://www.sqlservercentral.com/forum/topic.asp?TOPIC_ID=11375&FORUM_ID=9&CAT_ID=1&Topic_Title=Numeric+Primary+Key+vs%2E+Combination+Primary+Key&Forum_Title=General
April 15, 2003 at 12:40 pm
But the only problem there is you have to own the Server as well. As long as they have an account with Admin access on the Windows OS they can...
April 11, 2003 at 11:12 am
I cannot find any details on this one myself even in the sysmessages table. I would have to suggest contacting MS to shead some light on the issue. However, see...
April 11, 2003 at 6:02 am
Not really but your concern was the number of joins. But you do get benniffits from having the nullable data in the other table in that you don't waste extra...
April 11, 2003 at 4:31 am
Try sliding the dates based on the first starting dates month. This will make each period look like the year of period start.
DECLARE @d1 AS...
April 11, 2003 at 4:16 am
Viewing 15 posts - 3,136 through 3,150 (of 7,429 total)