Viewing 15 posts - 7,426 through 7,440 (of 26,490 total)
The default trace captures file growths, iirc.
June 3, 2013 at 8:38 am
Here is what would help, based on the sample data you provided what are you expecting to see from the query? Please provide that as a separate table and...
June 3, 2013 at 8:03 am
Unless you disabled the default trace, it is already running.
The trace is light weight and does not appreciably affect system performance (or at least in my experience).
June 2, 2013 at 11:31 pm
Why do you need the user ids to be sequential? You will also get gaps if you delete users from the table as well?
June 2, 2013 at 3:14 pm
This does not look like SQL. What are you trying to accomplish and how?
June 2, 2013 at 3:12 pm
julie 75341 (6/2/2013)
June 2, 2013 at 2:12 pm
julie 75341 (6/2/2013)
I am not having much...
June 2, 2013 at 1:12 pm
Now a question for kiran.vaichalkar, what is it you think that IDENTITY_INSERT does?
June 2, 2013 at 10:15 am
Without seeing what you see, can't really tell you. What I can say is that rebuilding indexes does not eliminate fragmentation, it reduces it.
June 2, 2013 at 10:10 am
Mirroring is done at the database level in SQL Server. This should have no affect on other services that are also running on the server.
June 2, 2013 at 4:01 am
GilaMonster (5/31/2013)
The only time when CheckDB is run on a database is when a user, application or job explicitly runs CheckDB.
Yea! I got one right today.
May 31, 2013 at 4:21 pm
IIRC, DBCC CHECKDB is not run automatically by SQL Server. If you need this run you need to do it manually or using a scheduled process.
May 31, 2013 at 3:23 pm
I ran this:
select
soundex('Kelly'),
soundex('Bentom'),
soundex('Kelly'),
soundex('Benton')
And got this:
K400B535K400B535
Looks to me that your code is working.
May 31, 2013 at 2:49 pm
What version of SQL Server are you using? Are just getting nothing in return or are there any error messages.
May 31, 2013 at 2:45 pm
Sorry, got it backwards. Long day already.
Feel dumb for not asking for the backup command being run.
May 31, 2013 at 1:54 pm
Viewing 15 posts - 7,426 through 7,440 (of 26,490 total)