Viewing 15 posts - 826 through 840 (of 1,413 total)
I would probably just script the views and then use Find&Replace in the script, and run it back in again.
May 17, 2005 at 5:29 am
It is not a must to use an alias. If port 1434 is open on the server then it will still work to connect to the server like SERVERNAME\INSTANCE. Otherwise...
May 17, 2005 at 5:27 am
No, they will not clash, since each temp table is created for the specific session in which it is created. If you are not using global temp tables (prefixed with...
May 17, 2005 at 1:16 am
The compile locks are used whenever SQL Server needs to recompile a plan for a procedure, or when it thinks it need to (due to clients not qualifying the name)....
May 17, 2005 at 12:44 am
Performance-wise the product will, when it is finished of course, have lots of 'hidden' improvements that will generally increase performance. Specific features you might be able to make use of...
May 16, 2005 at 3:37 pm
Ok, I will try this tomorrow when I am at work where I have SQL Server 2000 (only 2005 at home). Is it always around 125, or was that just...
May 16, 2005 at 3:32 pm
Latches are light-weight objects similar to locks, that are used internally by SQL Server for syncronization of (normally) very quick operations. The average wait time counter is a bit tricky...
May 16, 2005 at 8:40 am
It depends.
Temp tables are created in tempdb, just as any other real table. That means it is created and stored on disk with...
May 16, 2005 at 8:20 am
I am of course assuming that you have gone through the 'normal' ways of trying to figure it out (i.e. Google, MS Support etc) since you said the case is...
May 16, 2005 at 8:16 am
Yes, but failure to create a logon context can be caused by a lack of available memory in the MemToLeave area, where connection contexts are created. Extended stored procedures and...
May 16, 2005 at 8:11 am
Are you using extended stored procedures and/or xml processing?
May 16, 2005 at 6:33 am
You can use detach/attach process to move it. First detach the database, then move the physical (log) file(s) to the new location and finally attach the database again. When the...
May 16, 2005 at 2:09 am
Hm, sorry, no idea. I tested the statement and it worked perfectly for me. Which version of SQL Server are you using?
Did you run just that statement by itself in...
May 16, 2005 at 1:00 am
If you are thinking of starting a new project using SQL Server 2005 and Visual Studio 2005 I would definitely recommend you to try and get a hold of the...
May 16, 2005 at 12:46 am
Ehm, your SQL administrator should be pretty concerned if the log is full. But no, there is no way to delete rows without involving the transaction log. You can however...
May 16, 2005 at 12:35 am
Viewing 15 posts - 826 through 840 (of 1,413 total)