Viewing 15 posts - 1,801 through 1,815 (of 2,268 total)
You can use source control such as Subversion to store all your SP code and use this to keep track of changes
November 20, 2008 at 6:42 am
what i would do is;
Import the csv file as set all the fields to import a string,
do some transformation on the suspect dates to set them to a similar format
Convert...
November 20, 2008 at 4:01 am
It is really hard to say without more information.
Is there anything unsual about the 28 rows that were left out?
Do you have a lot of transformations that could be dropping...
November 19, 2008 at 9:30 am
yulichka (11/19/2008)
My data file is 184 KB and I wanted to shrink. What is the best way to do it?
why would you want to shrink a 184kb datafile? that...
November 19, 2008 at 8:53 am
yes this is something that you will have to do manualy, it is different from the AUTO-SHRINK option.
But be aware that unless you have had a lot of ...
November 19, 2008 at 8:38 am
straight from BOL
DBCC SHRINKDATABASE
( 'database_name' | database_id | 0
[ ,target_percent ]
[ , { NOTRUNCATE | TRUNCATEONLY }...
November 19, 2008 at 8:25 am
venki (11/19/2008)
Perry Whittle (11/18/2008)
venkiyou can of course also use the management studio if you prefer GUI interraction
How can we do with SQL Server Management Studio?
Right Click on databases node on...
November 19, 2008 at 7:53 am
To generate your scripts right click on the db in SSMS (2005) and click Tasks --> Generate Scripts..
This will give you the scripts that are required to...
November 19, 2008 at 2:41 am
You may want to have a look at your noise word list, Now is a common word and may be in the noise word list so it is...
November 18, 2008 at 10:58 am
How many images are there?
Are these images stored on a drive anywhere?
November 18, 2008 at 10:18 am
This isn't really a 'bug' with SQL.
The problem is SQL server getting the blame for bad application design and coding.
What situation do they need 33millions rows, must be a...
November 18, 2008 at 9:49 am
Do they need to select ALL rows?
Are they also selecting all columns? (select *)
November 18, 2008 at 9:40 am
SELECT * FROM sys.database_principals
WHERE TYPE = 's'
November 18, 2008 at 9:37 am
You can turn on simple recovery and shrink the transacation log, or you can shrink the database file.
Though neither of these are really recomended as SQL server uses as...
November 18, 2008 at 7:31 am
to do a count(*) for each table you can use;
sp_MSforeach table
create table #rowcount (tablename varchar(128), rowcnt int)
exec sp_MSforeachtable
'insert into #rowcount select ''?'', count(*) from ?'
select *...
November 18, 2008 at 7:16 am
Viewing 15 posts - 1,801 through 1,815 (of 2,268 total)