Viewing 15 posts - 226 through 240 (of 273 total)
Is tempdb set to autogrow? If not, that might be the issue as well. One application I support makes liberal use of temp tables. A guy I knew at another...
July 23, 2008 at 4:50 am
If your encryption tool works like PGP, it may be trying to use or create temporary working folders. You may need to give permission on the folders to the account...
July 16, 2008 at 2:10 am
I second the backup and restore method. Create the databases on the new machine, then restore a backup from the old machine. Copying the mdf and ldf files is a...
July 10, 2008 at 5:09 am
My wife wanted me to get an MBA. I pointed out that I would either have to quit my job, or spend evenings and weekends for the next several years...
July 10, 2008 at 5:06 am
I would love to improve the vendor package I support, but management won't let me unless I can convince the vendor to make the change. Which happens occasionally. Unfortunately, some...
June 30, 2008 at 4:51 am
We only have one instance per server, so that simplifies things somewhat. Each server has service accoutns that follow a naming ocnvention that includes the server domain and the server...
June 29, 2008 at 1:04 am
On more than one occasion, I've wished for a BCD data type like IBM uses on the AS/400 (iSeries now). Specify enough places, nad there's never a rounding issue. Of...
June 26, 2008 at 1:08 am
I've been doing things with computers seriously since 1973, when I was in the 10th grade, and have spent most of my working life using computers to improve business. However,...
June 26, 2008 at 1:01 am
If I'm taking a few days off and staying at home, I'll check email a few times jsut to make sure there's nothing catastrophic hapening. If I leave town, I...
June 14, 2008 at 11:24 pm
Here's something I've used lately for listing columns in a query:
select 'a.' + column_name + ','
from information.schema.columns
where table_name = 'table name you want'
order by ordinal_position
This gives me the prefix and...
April 4, 2008 at 7:35 am
In SQL2000 a user with rights on the destination server can save a DTS package directly to the new server.
Open the package in the first server
Choose Package->Save As from the...
April 2, 2008 at 12:35 am
Ghanta (3/23/2008)
March 24, 2008 at 12:00 am
Is there any reason not to just create a table with create table tempdb..tablename...., and then explicitly drop the table when it's no longer needed? Taht table will survive until...
March 13, 2008 at 7:46 am
Here's a two sample of bcp commands I use to transfer data from one database to another:
bcp Database..TableName out Drive:\FolderName\table.out -T -S SourceServerName -n
bcp Database..TableName in Drive:\folderName\table.out -T -S...
March 11, 2008 at 11:40 am
The biggest issue we've had with using money datatypes is that reports in Crystal, and other tools, put a $ sign on each foeld by default. Given tha tI support...
February 15, 2008 at 6:48 am
Viewing 15 posts - 226 through 240 (of 273 total)