Viewing 15 posts - 331 through 345 (of 444 total)
No error found to me. I copied the code from the attached doc file and it executed well...
Atif Sheikh
August 9, 2008 at 1:33 am
'On another network' means on another domain over the internet?
in this case you will be needing alot of netwrok configurations (probably VPN configuration) provided by your ISP.
GOD BLESS...
August 8, 2008 at 1:04 am
Well, most of the people here in Pakistan pronounce it as S Q L (each alphabet separate). 'Sequel' is also used, even I use this word for SQL but...
August 8, 2008 at 1:00 am
The solution of this is posted here...
http://www.tek-tips.com/viewthread.cfm?qid=308642
its some connectivity (networking) issue between client and the server
Atif Sheikh
August 8, 2008 at 12:54 am
Great series Brian... very helpful...
Atif Sheikh
August 7, 2008 at 11:58 pm
Very Helpful Article.
Will work on it in detail in near future to use it according to my own requirements...
Atif Sheikh
August 7, 2008 at 11:53 pm
Disable Statement accepts Database Name. The syntax is correct if the table on which you are performing Disable Trigger operation is in the dbo schema. But in this case, the...
August 6, 2008 at 10:10 pm
Restarting instances will truncate tempdb BUT the drawback is the downtime. There are alot of examples where one cannot even think about restarting instance frequently. It is only...
August 6, 2008 at 5:54 am
nice stuff. Normally, people overlook the delicacy of the tempdb and its location. It must have the appropriate space to work, especially when you are creating and re-building indices. ...
August 6, 2008 at 5:52 am
How about this...
DECLARE @bb AS varchar(max)
SET @bb = 'USE [?]; PRINT ''?''; '
SET @bb = @bb + '
DECLARE @aa AS varchar(max)
SET @aa = ''''
SELECT @aa = @aa + case WHEN...
August 6, 2008 at 5:21 am
declare @sSQL varchar(5000)
set @sSQL = 'SELECT @iEp_E_Id=Ep_E_Id, @iEp_R_Id=Ep_R_Id,@iEp_Seccion=Ep_Seccion,@sEp_Nombre=Ep_Nombre From...
August 6, 2008 at 3:59 am
Table structures and Execution plans will give a better look.
I think I would have gone for Left Outer Join as I believe that it is faster than NOT In. Instead...
August 6, 2008 at 2:06 am
Try the following way...
SELECT @cnt = Count(*) From notes where note_date > '06/23/2008'
Select person_id, case @cnt when 0 Then 'Y' ELSE 'N' END From Persons
The solution might be different...
August 6, 2008 at 1:52 am
Hi Jeff..
I executed your script and, surprisingly, got an error. One of my databases was in the recovering status and raised error on that database.
So I altered your script a...
August 5, 2008 at 3:56 am
For SQL Server 2005, its simply
SELECT * FROM sys.objects
WHERE is_ms_shipped = 0
ORDER BY modify_date DESC
Atif Sheikh
August 5, 2008 at 3:40 am
Viewing 15 posts - 331 through 345 (of 444 total)