Viewing 15 posts - 241 through 255 (of 335 total)
Thanks for these URLs. Interesting discussions
August 26, 2008 at 5:45 am
AFAIK, you need to restart SQL in order to make these changes for @@SERVERNAME
August 21, 2008 at 7:24 am
there's a script on the internet about moving tables between filegroups. This script is able to move files even without clustered indexes (temporary adding clustered indexes)
I used this script to...
August 21, 2008 at 7:09 am
make sure, you do a
dbcc updateusage('{databasename}')
and a
sp_updatestats
on your migrated database
August 21, 2008 at 7:02 am
Found this answer in BOL:
Although the @@SERVERNAME function and the SERVERNAME property of SERVERPROPERTY function may return strings with similar formats, the information can be different. The SERVERNAME property automatically...
August 21, 2008 at 6:51 am
Saw an exact question / solution 2 months ago. Here's the script, but I can't give you the author's name:
SET NOCOUNT ON
SELECT IDENTITY(int, 1, 1) AS agentJobId, name AS agentJobName
INTO...
August 15, 2008 at 2:24 am
Check the collation between your database and TempDB. This problem also kicks-in when creating temporary objects
August 14, 2008 at 4:13 am
I can't follow you: You're using a function, but you don't want a result from that function. So use a procedure. Use it like
exec {procedurename} @param1=@var, @param2=@var, etc, etc
Or stick...
August 14, 2008 at 4:09 am
I assume your clients are Win95 🙂 😀 😛 😉
OK, enough. NT 4 was a product of the 90's. Stop searching for an answer, upgrade your OS. Ever thought...
August 14, 2008 at 1:45 am
lazy solution: change job owner to SA
August 12, 2008 at 7:23 am
What I've heard is that you need to run CheckDB with DataPurity for migrated databases once. DataPurity is always used for newly created 2005 databases.
August 12, 2008 at 6:40 am
Hi,
you can either:
- do a backup/restore or
- do a detach, copy, attach
In both cases, SQL will upgrade you internal databasestructure. Keep in mind that the compatibilitylevel is not changed. Thus...
August 12, 2008 at 4:35 am
Update:
I'm also a fan of multiple datafiles, but I'm a little confused when I saw this article:
http://blogs.msdn.com/psssql/archive/2007/02/21/sql-server-urban-legends-discussed.aspx
August 7, 2008 at 4:08 pm
If you have multiple datafiles, new data will be spread over the datafiles, see this article:
http://sqlblogcasts.com/blogs/tonyrogerson/archive/2006/08/17/948.aspx
August 7, 2008 at 3:58 pm
Generally, an index scan is faster, because it only contains columns which are indexed (unless it's a clustered index).
Keep in mind that a table scan is not always bad. Especially...
August 7, 2008 at 3:42 pm
Viewing 15 posts - 241 through 255 (of 335 total)