Viewing 15 posts - 1,261 through 1,275 (of 1,655 total)
Mark,
try SQLPing http://www.sqlsecurity.com/Tools/FreeTools/tabid/65/Default.aspx
Though there's no option of importing a list of subnets, you can define a range of IP addresses.
Markus
July 12, 2007 at 6:17 am
There are various ways to do something like that, but my favourite way is using master..sp_msforeachdb. It's the easiest way to execute an sql command in each database. Google for...
July 12, 2007 at 4:39 am
Sorry I forgot to exclude stpe_id 0 which gives you just the overall outcome, no details.
So better use:
SELECT message FROM sysjobhistory
WHERE run_status = 0 -- only failed executions
AND job_id =...
July 12, 2007 at 3:16 am
The message your looking for is in sysjobhistory.
Try
select message from sysjobhistory
where run_status = 0 -- only failed executions
AND job_id = 'Your_Job_Id'
and you will find it. The problem with sysjobhistory is...
July 12, 2007 at 3:13 am
July 12, 2007 at 2:55 am
Jim
you can't start SQL Server in single-user mode from SSMS. You have to use the command line option. After that you should be able to connect from SSMS. Which error...
July 11, 2007 at 8:32 am
You might also use the sysperfinfo table. It's sometimes not that easy to read, but easily accessible through TSQL. See also here: http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=65&messageid=107424
Markus
July 6, 2007 at 4:10 am
Hello Isa,
the way SQL server executes your query depends on the fact if the table has (usefull) indexes or not and the size of the table. The query optimizer determines...
July 6, 2007 at 12:26 am
July 3, 2007 at 3:36 am
Have a look at the QUOTENAME function. Something like this
Select QUOTENAME ('Markus','"')
Markus
July 3, 2007 at 1:00 am
If you're using the maintenance plan and logging is enabled you should find more information in the logfile. I'm not talking about the SQL errorLog, but the logfile for your...
July 2, 2007 at 8:32 am
The syncobj_0x1566... views are created by SQL Server for replication when a snapshot gets created. Are you still using replication ? I know that sometimes not all replication objects are...
July 2, 2007 at 5:40 am
JDC,
could you post your code which works on the pre-SP2 machine. Because when I originally posted this question I tested it on a SP1 machine and my code did not...
June 2, 2007 at 4:46 am
To answer your questions:
1. By default a named instance uses dynamic ports. If you still want to use a fixed port you have to set it after installation in SQL...
June 1, 2007 at 3:55 am
In SQL 2000 it was possible to read the text from an encrypted stored procedure by opening a backup file in notepad. Someone told me thats still possible in 2005...
June 1, 2007 at 3:52 am
Viewing 15 posts - 1,261 through 1,275 (of 1,655 total)