Viewing 15 posts - 3,856 through 3,870 (of 7,429 total)
You could try a tool such as LogExplorer
Also, you could try DBCC LOG to look at the information but as of yet I have not found the details of understanding...
December 10, 2002 at 4:20 pm
Try DBCC CHECKDB and DBCC CHECKTABLE. Also, try a DBCC DBREINDEX on all the tables to see if may correct. Then do DBCC UPDATEUSAGE and sp_updatestats. Make sure you have...
December 10, 2002 at 3:54 pm
COuld be a number of things. However, Watson should generate a dump you can look over to see if anything jumps out at you. Also, make sure you look in...
December 10, 2002 at 3:34 pm
Based on the example Greg put together also try this and compare the execution plans and runtimes to see if there is a difference. Had no idea what you indexes...
December 10, 2002 at 3:13 pm
Actually unless you want to start at 0 change
select count(*)
to
select count(*) + 1
December 10, 2002 at 2:50 pm
I agree, only when absolutely needed for a specific reason do. But for the most part try to keep control of the environment and it's quality by only having one...
December 10, 2002 at 11:27 am
I have not seen any patches for SQL on Windows Update. That is for Windows OS related updates only. I would do as Don suggest and subscribe to their security...
December 10, 2002 at 11:26 am
However you did state this is a devleopement server. So as long as there is nothing mission critical or matter if they mess up then I would say it would...
December 10, 2002 at 11:24 am
I understand your issue and have seen many times. You should avoid using views to create views with a deep level as you will take performance hits in many cases.
...
December 10, 2002 at 10:59 am
Please read.
http://dictionary.reference.com/search?q=byte
Ok just to add a little more. I found what I was looking for. Unicode is based on the 8bit byte, and is a MBCS (MultiByte Character Set). So...
December 10, 2002 at 10:40 am
Thanks Simon, I beleive the answer COALESCE may or may not utilize an index depending on the scenario of involved.
If against multiple values (column or data) compared to a single...
December 10, 2002 at 10:31 am
Are are you working in a mixed environment? (SQL7 and 2000)
Also, try the last SP you installed on that machine.
Finally other than scripting the DB is there anything in the...
December 10, 2002 at 10:09 am
FIrst, hom much data are you talking abou and is their a primary or unique clustered index on the table? There are a lot of ways to mimic it but...
December 10, 2002 at 10:04 am
If you will not be using any of the characters outside the defined 256 use a varchar, char or other non-unicode datatype. If they will then use a unicode type...
December 10, 2002 at 7:47 am
How is your network connection to the other server defined in Client Network utility. Make sure to use TCP/IP to make the connection as has fewer overall issues.
Found this...
December 10, 2002 at 7:39 am
Viewing 15 posts - 3,856 through 3,870 (of 7,429 total)