Viewing 15 posts - 136 through 150 (of 231 total)
hi Busxton 67,
The following is from BOL:
SET ANSI_NULLS must also be ON when you are creating or changing indexes on computed columns or indexed views. If SET ANSI_NULLS is OFF,...
November 26, 2007 at 3:47 am
Hi Snujahnavi,
For the raiserror, you have to create the message 50005 before (outside the trigger)
EXEC sp_addmessage
@msgnum = 50005,
@severity = 10,
@msgtext = N'%s',
@lang = 'us_english'
GO
alter Trigger TestTrigger
On dbo.tablefortrigger
For...
November 26, 2007 at 3:29 am
Hi dr_csharp,
Check the new features in SQL Server 2005
http://www.microsoft.com/sql/prodinfo/features/top30features.mspx
http://www.microsoft.com/sql/prodinfo/overview/whats-new-in-sqlserver2005.mspx
Make the jump to SQL Server 2005
http://articles.techrepublic.com.com/5100-9592-6036309.html
http://searchsqlserver.techtarget.com/generic/0,295582,sid87_gci1194265,00.html
http://searchsystemschannel.techtarget.com/tip/0,289483,sid99_gci1229039,00.html
Regards,
Ahmed
November 25, 2007 at 8:12 am
Hi Anujahnavi,
For the raiserror, you have to create the message 50005 before (outside the trigger)
EXEC sp_addmessage
@msgnum = 50005,
@severity = 10,
...
November 25, 2007 at 7:08 am
hi,
Or just use Surface Area Configration to enable xp_cmdshell
Regards,
Ahmed
November 24, 2007 at 8:44 pm
Hi Zaheer,
Check the following
http://www.simple-talk.com/sql/backup-and-recovery/pop-rivett-and-the-suspect-database/
http://support.microsoft.com/kb/224071
Ahmed
November 24, 2007 at 8:00 pm
Hi Zaheer,
Use the way described in the following links to transfer logins.
http://support.microsoft.com/kb/246133
Regards,
Ahmed
November 24, 2007 at 7:43 pm
Hi ALZDB,
If I want to create the user JustProc on AdVentureWorks datatbase.
Please Just confirm the following:
1. Connect to an instance as the sysadmin
2. Create a new login JustProc (SQL...
November 24, 2007 at 3:30 am
Sorry DaGmen
I think I was wrong check the following link http://www.mssqltips.com/tip.asp?tip=1203
As such, stored procedure based access to SQL Server from your front end applications offers the following benefits:
-...
November 24, 2007 at 12:04 am
Hi,
I am not sure you can allow user to execute Stored Procedure (which probably does a lot of Select/Update/Insert) whithout giving the user any type of access to tables. For...
November 23, 2007 at 11:56 pm
Hi,
Yes you have to enable AWE.
Check the links
http://www.sql-server-performance.com/articles/per/awe_memory_sql2000_p1.aspx
http://msdn2.microsoft.com/en-us/library/ms178067.aspx
Regards,
Ahmed
November 23, 2007 at 5:11 am
hi,
you can also schedule the dts to run automatically each monday.
November 22, 2007 at 6:57 pm
Hi,
why you dont use a DTS/SISS or BCP to insert the data from your text file to the database.
http://www.databasejournal.com/features/mssql/article.php/3391761
http://www.verio.com/support/documents/view_article.cfm?doc_id=3846
Regards,
Ahmed
November 22, 2007 at 5:34 pm
Hi,
You can use the following to perform what you want.
This proc give you Input/output on Database files (from the starting of the server until now).
it's just a little bit...
November 22, 2007 at 5:24 pm
Hi,
You are rigth.
If we talk about strategies it depends on a lot of considerations.
In my case I do the following
- Backup
- Daily Full backup at 12Am.
...
November 22, 2007 at 5:20 am
Viewing 15 posts - 136 through 150 (of 231 total)