Viewing 15 posts - 1,951 through 1,965 (of 5,356 total)
October 28, 2004 at 11:34 pm
To extend on Steve, here's a code snippet that might give you some ideas
set nocount on
declare @ip varchar(255), @cmd varchar(100)
set @cmd = 'ping ' + HOST_NAME()
create table #temptb...
October 28, 2004 at 2:53 pm
I think it is documented behaviour that SQL Server will stop when there is no more log space available. See if this helps:
http://support.microsoft.com/default.aspx?scid=kb;EN-US;307487
October 28, 2004 at 2:28 pm
No, I don't think any question here is a waste at all !!!
Sure, my site is German since I am from Germany. ![]()
As for...
October 28, 2004 at 1:08 pm
No, you can't stop them from being logged. They are necessary to ensure the system's ACID properties. However, you change can your recovery model to simple, as you already did...
October 28, 2004 at 12:52 pm
October 28, 2004 at 12:49 pm
See if this helps:
http://support.microsoft.com/default.aspx?scid=kb;en-us;319701
http://support.microsoft.com/default.aspx?scid=kb;en-us;198572
October 28, 2004 at 6:41 am
No, none that I'm aware of.
October 28, 2004 at 4:25 am
Could you give an example?
I'm not sure what exactly you want to do.
![]()
October 28, 2004 at 1:55 am
AFAIK has nocache something to do with generating sequences. So my best bet would be, there is no direct equivalent. However, something like the IDENTITY function might prove useful at...
October 28, 2004 at 1:48 am
A code snippet would be of some help. ![]()
October 28, 2004 at 1:37 am
AFAIK, no!
You might want to try this in EM:
Create a new table. Save it. Change a column to have the IDENTITY property defined on it. Click on Generate Change script....
October 28, 2004 at 1:36 am
Okay, if it's for an interview, I would say the difference is that you should avoid UDF's whereever you can, while you should use stored procedures whereever you can. Exceptions...
October 28, 2004 at 1:33 am
If you can,you might want to read "Inside SQL Server 2000" on that topic. Might be a more reliable reference than the ones you've quoted.
While it is true that almost...
October 28, 2004 at 1:24 am
Viewing 15 posts - 1,951 through 1,965 (of 5,356 total)