Viewing 15 posts - 16 through 30 (of 61 total)
MyDoggieJessie (8/28/2013)
August 28, 2013 at 10:56 am
Hi,
Not tried it by myself but may be useful to you:
sqlcmd <yourscript>
IF ERRORLEVEL 1 goto err_handler
goto done
:err_handler
...
August 21, 2013 at 2:26 pm
What is your intention by putting BREAK?
August 21, 2013 at 2:19 pm
Never tried that. But must be feasible through custom code. Please post the solution if you resolve it.
August 21, 2013 at 2:08 pm
You can use ping [SQL Server Name] to get the ip.
August 21, 2013 at 11:33 am
Hi AndrewJacksonZA,
Did this work? If you remember 😉
August 20, 2013 at 5:55 pm
Storing files on File Server is better option if file size is huge.
August 20, 2013 at 2:40 pm
August 20, 2013 at 1:26 pm
You can achieve this by using DBCC commands. Please refer post below:
How to use the DBCC MEMORYSTATUS command to monitor memory usage on SQL Server 2005
August 20, 2013 at 11:18 am
SELECT X.* FROM
(
SELECT
distinct
case when w.leavingdate is null then COALESCE( al.CheckTime, c.[Date]) else null end Date
,case when w.leavingdate is null and al.status='I' then al.eID else '' end eid
,case when...
August 20, 2013 at 11:09 am
Viewing 15 posts - 16 through 30 (of 61 total)