Viewing 15 posts - 6,451 through 6,465 (of 7,191 total)
Deb
You don't say what version of SQL Server you're using, but if it's 2005, have you tried the dynamic management views? They begin with sys.dm_ and they have a lots...
March 28, 2007 at 7:55 am
You could have your transaction log just truncated and not backed up while the optimization job is running. Then, when it is finished, take a full backup of the database...
March 27, 2007 at 8:55 am
--Table
CREATE TABLE LineNums (INVOICE int, linenum int
March 27, 2007 at 8:28 am
Abhay
If I had to put money on it, I'd say that your tables aren't owned by dbo. You've confirmed that both tables are owned by the same user, and you've...
March 27, 2007 at 6:58 am
Abhay
Does this work?
USE QISPD
Insert Into QISPD2.dbo.VisitInfo (VisitId, patientId, admitDate, VisitType, spotriasUniqueId)
Select visitId, patientId,...
March 27, 2007 at 6:33 am
Mark
Are you doing this on a production sever? Have you tested it first?
There are certain things to look out for. For instance, I think SP4 limits the pairs of data...
March 27, 2007 at 6:21 am
Abhay
I don't really know. I take it both databases are on the same server?
Do you get the same error if you just do this? SELECT * FROM QISPD.dbo.visitInfo
What...
March 27, 2007 at 6:16 am
Abhay
So it sounds like visitInfo doesn't exist in QISPD, or if it does it's not owned by dbo, or maybe you don't have permissions on it. Or perhaps you have...
March 27, 2007 at 5:05 am
Abhay
Assuming both abc tables have an identical structure and are owned by dbo:
INSERT INTO QPR.dbo.abc
SELECT * FROM XYZ.dbo.abc
John
March 27, 2007 at 4:23 am
The order of the rows in a table has no meaning in a relational database system. Does your table have a primary key constraint? If so, you can order by...
March 26, 2007 at 4:39 am
"I don't know why management studio only shows fisical drives, and not mapped drives"
I imagine it's because the drive is mapped in the context of your login and not in...
March 26, 2007 at 3:37 am
Happycat is right - backing up and then restoring to a different location is the best way. However, I don't think detaching and re-attaching will work, since I believe this...
March 26, 2007 at 2:58 am
Adrain
Right-click on your server in Enterprise Manager and choose Properties. The server collation appears on the General tab.
John
March 23, 2007 at 9:55 am
Certainly not the best way of doing it, Anders, but since you and I have both asked how he decides which duplicate rows to keep and haven't had a proper...
March 23, 2007 at 9:34 am
Viewing 15 posts - 6,451 through 6,465 (of 7,191 total)