Viewing 15 posts - 166 through 180 (of 789 total)
The following may or may not be relevant...
http://support.microsoft.com/default.aspx?scid=kb;en-us;323038February 4, 2004 at 5:02 pm
You could replace your WHERE clause with:
where FDate between '01 FEB 2004' and '29 FEB 2004' and datename(dw, FDate) = 'Sunday'
February 4, 2004 at 1:57 am
I'm stumped. I would have suggested your SQL Server service was running under an account that's not a member of local administrators, but you've already discounted that.
I'll give it some...
February 3, 2004 at 1:05 pm
You can proceed (in a complicated manner) if the database was in full or bulk-logged recovery mode AND you've taken regular tlog backups.
If the table was in simple recovery mode...
February 3, 2004 at 4:13 am
Was it the supersocket error recorded in the sql error log?
I've seen it before. Sometime correctable (by a reboot) and sometimes not... when it occured on a cluster.
February 3, 2004 at 4:09 am
You should be able to emulate:
tAudit.ClientID Like IIf(IsNull([CurrentClientID]),"*",[CurrentClientID])
with:
tAudit.ClientID = IsNull(@CurrentClientID, tAudit.ClientID)
and, for the text field, emulate:
tAudit.ActionType Like IIf(IsNull([CurrentType]),"*",[CurrentType])
with:
tAudit.ActionType Like IsNull(@CurrentType ,"%")
February 3, 2004 at 4:04 am
I once got initial FT problems because I'd removed the builtin/administrators login.
February 3, 2004 at 3:47 am
I've seen T-SQL code that commits every record. Although it's slow I have never seen this 1-row-per-page situation occur.
I think it is unique to DTS transforms, or at least...
January 28, 2004 at 3:55 pm
From experience, in such situations MS usually request that you follow their suggested techniques for detecting blocking. If that's what they've suggested, then follow their advice. It often has good results...
January 28, 2004 at 4:34 am
dbcc inputbuffer will only log the command used to execute the first SP if there's a chain of SPs utilised.
I'm with Kenneth. Use Profiler. Not that you'd have it running...
January 28, 2004 at 4:24 am
What does DBCC SHOWCONTIG return for each table?
January 28, 2004 at 3:31 am
If it's any consolation, existing system functions exhibit the same behavior. Eg.
create table x
(id int identity,
name varchar(30) constraint checkname check (fn_chariswhitespace(name) <> 1))
Server: Msg 195, Level 15, State 10, Line...
January 28, 2004 at 2:17 am
Try something like:
select ename, replicate('*', isnull((convert(int, sal) / 100),0)) from emp
Cheers,
- Mark
December 31, 2003 at 5:34 am
Dude226,
Is your remote login timeout set to zero (infinite wait)? Or, is there a firewall between the servers?
A personal preference of mine is that the live server just does...
December 30, 2003 at 12:44 am
Viewing 15 posts - 166 through 180 (of 789 total)