Viewing 15 posts - 43,486 through 43,500 (of 49,571 total)
koln (10/28/2008)
GilaMonster,I went to Add/Remove Progs. and saw that SQL Server 2005 (and 2000) was installed.
What components of 2000 and 2005?
I'd say run the upgrade from scratch and pay close...
October 28, 2008 at 12:02 pm
What parts of SQL 2005 do you have installed? (Check add-remove programs). What SQL-related services are running?
It's very easy to go through the upgrade and not upgrade any of the...
October 28, 2008 at 10:41 am
Leo (10/28/2008)
You are right, I run the full backup at 1:00AM then Tran Log backup at 4:00AM. As you said, that is completed waste of my time coz......nobody using the...
October 28, 2008 at 10:35 am
What did it install? A named instance? Did the installation give any errors?
Look in the services app. What SQL services are there?
October 28, 2008 at 10:26 am
One of my developers has written a query that when runs seems to be spawning some sub-queries (I say this because when I look in activity monitor I see multiple...
October 28, 2008 at 10:21 am
What do you mean by 'its still a SQL 2000 database'? If you mean it's still in compat mode 80, that's normal. The upgrade will not change the compatibility mode...
October 28, 2008 at 10:17 am
The RPC:completed and SQL:Batch completed are good events to use to see what's running against the server.
First thing is to capture whatever code the app is using to show the...
October 28, 2008 at 10:13 am
rchantler (10/28/2008)
October 28, 2008 at 10:09 am
Lowell (10/28/2008)
October 28, 2008 at 6:56 am
Try this
SELECT A, B, C, Row_number() OVER (Partition by A, B, C Order by A,B,C) AS Flag
FROM
(SELECT A,B,C FROM OriginalTable
union all
SELECT A,B,C FROM OriginalTable
union all
SELECT A,B,C FROM OriginalTable
union all
SELECT...
October 28, 2008 at 6:55 am
Leo (10/28/2008)
Some of my table are 'NULL' in statistics_Update_Date column, is that mean UPDATE STATICS is never been run?
More likely it means that the object in question is a heap...
October 28, 2008 at 6:52 am
In SQL 2005 you can set up DDL triggers to log schema changes.
October 28, 2008 at 6:48 am
Why are you shrinking your database?
Be aware that you will need to rebuild indexes afterwards as the shrink will badly fragment them.
October 28, 2008 at 6:47 am
Considering that you want to import from a text file into SQL, perhaps the data source should be the text file you're trying to import.
October 28, 2008 at 6:37 am
Check the account you're using to connect. Make sure that the login name exists on the remote server and the password is correct.
October 28, 2008 at 6:36 am
Viewing 15 posts - 43,486 through 43,500 (of 49,571 total)