Viewing 15 posts - 121 through 135 (of 370 total)
nazaninahmady_sh (12/22/2008)
i want to remove all rows , then modify my table deign, how can i use Truncate?
If all you are trying to do is change the structure of the...
December 30, 2008 at 9:34 am
We maintain seperate fields for our Property Addresses and then assemble them when we wish to use them. It probably doesn't help for your situation but it helps us...
December 5, 2008 at 7:24 am
Thanks Irosales for the links. I will pass it on to our IT department. They currently have committed to moving off of the mainframe but it will probaly...
November 21, 2008 at 9:47 am
I doubt if it can be done. You might look into moving the application to PCs by using a PC based COBOL compiler. I'm sure this will take...
November 21, 2008 at 8:09 am
What is the actual name of the database you are trying to restore? Is it master?
Steve
November 19, 2008 at 2:27 pm
In what format are you getting the data and how is it inserted into Sql Server? Since there is no guaranteed order of the data, the time to assign...
November 13, 2008 at 8:10 am
If this is trully an accounting system, what do you do with adjusting entries? You always have entries that are posted that will reverse or adjust the original amounts...
November 13, 2008 at 7:53 am
Is there no one around that has worked on the tables and maybe has a clue?
Is the application written in house and the people that wrote it available...
November 6, 2008 at 10:12 am
Also, if you do any ORDER BYs on the column, you will get a different result for the varchar than you will for the int.
i.e.: ...
November 4, 2008 at 2:04 pm
If this were a one time event, I would use the search and replace capabilities of Query Analyzer but it sounds like you want to do this on a regular...
October 16, 2008 at 8:06 am
Perhaps a correlary script to disable contraints and triggers when copying large amounts of data from one database to another is
sp_msforeachtable "ALTER TABLE ? NOCHECK CONSTRAINT all"
go
sp_msforeachtable "ALTER TABLE ?...
October 16, 2008 at 7:25 am
If you are using a field to determine what type of data is being stored in a row, I suspect that your data is not normalized. If it is...
September 30, 2008 at 8:53 am
A side question. I know that when you reboot, tempdb is rebuilt based upon the model database (privileges, etc.). Is the initial size of tempdb based upon the...
September 30, 2008 at 7:57 am
Just a couple of thoughts.
Could these people be a member of SysAdmin or db_owner? No matter what permissions are disallowed, they would still be able to update.
Is the field...
September 11, 2008 at 7:35 am
When you create databases for ESRI's ArcSDE, it always uses the logical names of sde_dat & sde_log, no matter what the database name is. Knowing how ESRI has a...
September 11, 2008 at 7:22 am
Viewing 15 posts - 121 through 135 (of 370 total)