Viewing 15 posts - 616 through 630 (of 1,069 total)
SELECT DATEADD(YEAR, -1, DATEADD(MONTH, DATEDIFF(MONTH, 0, GETDATE()) -3, 0))
SELECT DATEADD(YEAR, -1, DATEADD(MONTH, DATEDIFF(MONTH, 0, GETDATE()), 0))
October 28, 2010 at 5:41 am
elham_azizi_62 (10/25/2010)
we want to log changing data such as isert,delete and update that users perform.we can do this.but now we want to khnow
which user do this changes?I want...
October 26, 2010 at 1:17 am
DMV sys.dm_exec_connections returns client IP. For example:
select client_net_address, session_id from sys.dm_exec_connections where net_transport = 'TCP'
October 26, 2010 at 12:15 am
brian_winzeler (10/21/2010)
No item by the name of 'ix_name' could be found in the current database 'db', given that @itemtype was input...
October 22, 2010 at 6:55 am
It may not cause security issues.
But, in my opinion, it is better to give DBMail access to only limited number of users.
Because, it is possible to send large number...
October 21, 2010 at 3:27 am
The SQL Server Agent service account should be a domain account and should have read-write permission to on folder \\machineB\Backup.
October 21, 2010 at 12:13 am
Snapshot replication get does not ins/upd/del individual rows. It does bcp. By default bcp does not fire triggers.
October 20, 2010 at 4:28 am
Why creating a job to run a .BAT which runs a SQL command?
You can do that in T-SQL job right? Are you trying to run this on Express edition...?
If you...
October 15, 2010 at 4:02 am
Objects created by users belonging to db_owner role gets dbo schema (this was the behavior in SQL Server 2000, if I remember correctly). I think your windows user does not...
October 15, 2010 at 3:47 am
Check whether WMI (Windows Management Instrumentation) service is running on the server.
October 15, 2010 at 2:46 am
Set Max Server Memory for the SQL Server instance.
September 24, 2010 at 3:37 am
I think the job history entry for 11-09-10 has been removed from msdb database.
Regarding this situation I have following suggestions:
1) Increase the job history log size (right click on SQL...
September 23, 2010 at 5:15 am
RaviShankar1234 (9/16/2010)
... DO I need to restore the SMK and DMK that were backed up? and creating the certificate that was backed up?
Yes. Without them (SMK, DMK and certificate)...
September 22, 2010 at 11:52 pm
Try "NOT FOR REPLICATION" option and test it.
Hope it helps you.
September 22, 2010 at 11:41 pm
Viewing 15 posts - 616 through 630 (of 1,069 total)