Viewing 15 posts - 376 through 390 (of 1,655 total)
Keith Thomas (4/29/2009)
April 29, 2009 at 8:12 am
Nilesh (4/29/2009)
April 29, 2009 at 7:38 am
Every user has automatically access to the master database via the guest account. And yes, that is necessary, don't remove the guest account.
So in your case, I would simply...
April 29, 2009 at 6:38 am
You prosted this into the SQL 2000 section, so I assume you're using this version.
But EXECUTE AS was implemented with SQL 2005.
April 29, 2009 at 5:47 am
Have a look into SSMS tools pack.
Among other very useful feautures it also offers the option to run a TSQL script against multiple database.
April 29, 2009 at 5:08 am
You can compress your backupfiles by calling a compression tool through xp_cmdshell, but personally I would advise against it for two reasons. First of all you need even more diskspace...
April 29, 2009 at 3:54 am
You should use a Join instead of the subquery for the id.
Try this:
UPDATE TABLE1
SET statutSpecifique =
(SELECT dpStatut FROM @tempTableStatutDp)
FROM Table1 JOIN @tempTableStatutDp t
ON Table1.id = t.dpid
April 29, 2009 at 12:36 am
Hi TECHBABU,
Thanks for your replies. The articles are useful, but don't really offer an explanation for what is happening on my machine. In the mean-time I was able to do...
April 28, 2009 at 7:10 am
In SQL 2005 you can query the DMV sys.sql_dependencies for dependent and depending objects.
Another option is using the stored procedure sp_depends which will also work with SQL 2000.
April 28, 2009 at 3:03 am
Both machines are actually virtual machines running on the same type of hardware. The OS is Windows 2008 Standard 32-bit. I don't have the Perfmon data for CPU usage since...
April 28, 2009 at 1:59 am
What are you actually trying to achieve?
Do you want to make the table read-only or do you want to restrict access to a table so you can run a...
April 27, 2009 at 8:46 am
wagner (4/27/2009)
Hello All,I wrote a backup procedure which starts with the sp_procoption automatically and loops with WAITFOR.
That works fine when I restart the server.
I assume you're using SQL Express...
April 27, 2009 at 8:09 am
SQL 2008 supports the replication of certain DDL commands like ALTER TABLE. So you should be fine with the changes you mentioned.
For more info see http://msdn.microsoft.com/en-us/library/ms151870.aspx
April 27, 2009 at 5:19 am
Look up ALTER INDEX in Books Online.
When using the PARTITION option you can define which partition to rebuild or reorganize.
April 21, 2009 at 4:51 am
If you're database is logshipped it's in a restore state. Inorder to make ik available read-write you need to exeute this:
RESTORE DATABASE database_name WITH RECOVERY
April 21, 2009 at 1:28 am
Viewing 15 posts - 376 through 390 (of 1,655 total)