Viewing 15 posts - 1,051 through 1,065 (of 1,109 total)
While partitions are elegant , they do require some time too look at (I should have mentioned this). James's solution is simpler and could...
August 21, 2007 at 9:06 am
You could produce XML in a stored procedure, and then just use XSLT to make it nice. Of course you need to consider the supporting browsers, whether you want some...
August 21, 2007 at 9:01 am
If you are on Enterprise edition, you may want to consider table partitions. SQL Server allows you then to swap in/out individual partitions, which can have their own indexes as...
August 21, 2007 at 8:45 am
Among others temporary tables are stored in tempdb. Large and complex queries from other databases also use the tempdb. use sp_spaceused to get some basic information on how much space...
August 21, 2007 at 1:49 am
Indexed views are actually quite handy, and can increase query performance. SQL Server's query optimizer does use them automatically, even if the view is not referenced. You are right however...
August 20, 2007 at 2:19 pm
In case someone does not post a validation to what I said (it is not particularly overdocumented) :
You can validate it yourself by:
Create...
August 20, 2007 at 1:54 pm
The fact that you can connect to 1433 is a good sign. This should mean that SQL Server is listening on that port, and that you can connect to it....
August 20, 2007 at 1:20 pm
SQL Server stores only the columns that are in the view. This of course means that data will be duplicated, but only for the columns that are part of the...
August 20, 2007 at 1:08 pm
SQL Server listens on TCP port 1433 (the default instance). Try connecting to this port from the remote machine using telnet or something similar. Also, if you have a named...
August 20, 2007 at 12:40 pm
Yes. This must be enabled if you want to connect to the SQL Server via TCP/IP. As Steve mentioned, named pipes can be used for local connections only.
Andras
August 20, 2007 at 12:01 pm
Do you have TCP connections enabled for the server (use Surface Area Configuration to check/set this)
Regards,
Andras
August 20, 2007 at 10:59 am
Yes it is. If you do this the database on the 2005 server will be in compatibility mode 80.
Regards,
Andras
August 20, 2007 at 9:26 am
Is your SQL Server Browser Service running?
Andras
August 20, 2007 at 1:47 am
Synonyms can only be created for tables, views, functions, stored procedures and extended stored procedures. (And there are some limitations even for these.)
This post looks like http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=149&messageid=391743
Regards,
Andras
August 20, 2007 at 1:27 am
Viewing 15 posts - 1,051 through 1,065 (of 1,109 total)