Viewing 15 posts - 61 through 75 (of 272 total)
What you are suggesting sounds feasible, I have done similar in the past. You may want to consider differential backups ad well to reduce the number of logs you need...
May 16, 2012 at 2:17 am
You cannot restore master from SQl Server 200 to 2008, many interbnal thibgs changed that affect the master database.
What do you want to keep from the old master db...
May 14, 2012 at 1:13 am
Can you post some more details, the DDL for the table in question, some test data and code that shows the problem, and the exact error message please?
There should be...
April 28, 2012 at 12:18 am
Unless you have some other symptoms of memory problems I would do nothing at all. SQL server is designed to use as much memory as is available. It only releases...
April 20, 2012 at 4:11 am
If chinese characters are stored properly in SQL Server then they will display properly in Management Studio. So I would work on the assumption they have been mangled somewhere.
I would...
April 19, 2012 at 9:40 am
The nonclustered index does indeed take up disc space, but not really in tempdb.
While actually building the index it may use space in tempdb, but the finihed index is...
April 19, 2012 at 2:44 am
You can use a variant of insert to copy data from one table to another.
It will be something like:
insert into xxx (col1, col2 etc)
select colx, coly from yyy
But I would...
April 14, 2012 at 1:38 am
If a column is defined as a primary key, then by definition it cannot be null, so you cannot do anything to allow nulls in there.
It can however (if...
April 14, 2012 at 1:32 am
Reports always deploy using the name of the report, so rename them to something sensible from a user perspective is your best option.
To deploy one report (as opposed to the...
April 2, 2012 at 4:26 pm
I would stick closer to the example Lowell gave you, (which is almost identical to a template I use) .
The important distinction in that technique compared with what you just...
March 23, 2012 at 1:18 am
Without DDL, (including all indexes) and some actual execution plans we are all flying blind, it is almopst impossible o make any suggestions.
Can you try running the select separately from...
March 22, 2012 at 9:56 am
I'll second that but add:
It also depends a lot on:
Data types
indexes
disc config
disc speeds
and probably more...
Mike
March 21, 2012 at 10:34 am
Table definitions, index details (all of the details) and actual execution plan would all be a gret help, but my initial thoughts (guesses) are:
a) Index on logtime column - is...
March 14, 2012 at 1:05 am
While using BCP, SSIS etc will undoiubtedly help you, they tend to be problematic with the problems you have with varying column numbers coming in.
Therefore if you already have a...
March 10, 2012 at 3:47 am
Hi Michael
Synonyms are permanent, so exist until dropped.
From your original description I would have thought you could create them all once on an installation, and the code remains the same...
March 1, 2012 at 12:38 am
Viewing 15 posts - 61 through 75 (of 272 total)