Viewing 15 posts - 181 through 195 (of 272 total)
Backup speed is almost entirely limited by disc throughput speed so you need to uderstand the limits of your disc system. Some suggestions and places to look:
a) Backup always to...
October 15, 2009 at 1:36 am
There is no good reason can think of, and since the constraint names in your case appear to be system generate my bet would be that at some...
October 13, 2009 at 11:18 pm
Not sure why you want a stored proc for something like this but here goes
What TABLE are you trying to uypdate - you select from one name, and then try...
October 12, 2009 at 8:37 am
You cannot create view with the same name as a table. You will have to choose a different name ofr the view, or create th eview in a different schema...
October 8, 2009 at 7:04 am
This is down to to language (and hence date format) options.
The OUTPUT of dates and assumptions as to valid INPUT forms are controllable separately.
"set dateformat" will allow youto...
September 28, 2009 at 5:23 am
No differences at all as far as I have ever found.
Mike
September 28, 2009 at 5:07 am
Making columns nullable actually costs you 1 bit per nullable column, so non_nullable will actually save you some space - albeit only a little - so your premise about making...
September 28, 2009 at 1:29 am
Sorry - No.
By defintion triggers in SQl Server fire once per statement, and by examining the virtual tables inserted and deleted should be written to process all rows affected by...
June 8, 2009 at 5:43 am
I would also consider checking what data can actually be entered in the table and review if you really need Nvarchar rather than varchar. If you have no need of...
June 7, 2009 at 1:12 pm
I have never known a situation where any db file was deleted incorrectly by SQL Server. Most likely is someone deleted them manually either when the service was not running,...
April 4, 2009 at 1:19 am
If you re-read the BOL entry you will see it is behaving exactly as defined. I think you may be confusing a rollback of a named transaction (which is what...
March 25, 2009 at 3:10 pm
The file is constantly open by the sql server process, even if no-one is actually using it at that moment (Unless you have enabled auto-close which I would NOT normally...
March 25, 2009 at 3:00 pm
Windows event viewer is probably the easiest otion - Are you new to Windows as well as SQl Server? If so you may find you need to read up on...
March 24, 2009 at 4:59 am
While what you have may work at the momenet the statement:
SELECT @newrecflag=newRecFlag FROM stg_tempEmp
still worries me - what happens if there are many rows in stg_tempemp?
Mike...
March 19, 2009 at 9:47 am
I think you may have spotted it. The trigger will indeed fire when zero rows are retrived in the example you post. Triggers always fire once per statement and the...
March 19, 2009 at 2:35 am
Viewing 15 posts - 181 through 195 (of 272 total)