Viewing 15 posts - 106 through 120 (of 294 total)
nvarchar can go up to 4,000 characters, you could first try and extend the field length to see if that gives you enough space.
April 7, 2009 at 4:52 am
Sounds like you need to profile the server to find out what's writing to the tempdb log.
March 31, 2009 at 7:33 am
It appears the problem is that when two rows share an account number, it will list both rows (even though capacity and secy_type are duplicated), ex. acct_num '92345670'
Your result set...
March 27, 2009 at 9:22 am
Check out the fill factor of the table, seems like you may need to adjust it see article:-
http://www.sqlservercentral.com/articles/Performance+Tuning/whocaresaboutfillfactor/1196/
March 26, 2009 at 11:11 am
I've never seen this error before but a quick search in Google showed users getting this error when not using the correct schema in referring to the table. Could this...
March 26, 2009 at 9:26 am
You can set up the user in the model database with db_datareader, then when a new database is created that user will become a member of db_datareader in the new...
March 23, 2009 at 11:55 am
To add also that it will depend on the company you are outsourcing to. Never seen any examples of outsourcing that achieve the expected result, seen plenty of problems though,...
March 23, 2009 at 10:29 am
What version of SQL Server are you running with? DTS was for SQL Server 2000, SQL Server 2005 replaced this with SSIS, but still supports use of DTS packages, but...
March 19, 2009 at 12:39 pm
If you create a view with schema binding, when the underlying table is changed you do get a warning that the view will be altered, which lets you know there...
March 19, 2009 at 12:33 pm
Having just searched the Internet for inspiration on a schema for remodeling the 'person' in a intelligence system I believe that you will find quite a bit of info out...
March 12, 2009 at 12:28 pm
This is almost what you want....
CREATE PROCEDURE [dbo].[usp_dbspace]
AS
/*=========================================================================
Stored Proc:usp_dbspace
Purpose:Generates System settings information
Author:Carolyn Richardson
Date:1/09/2007
Description:Lists Database Space used
=========================================================================*/
SET NOCOUNT ON
DECLARE @Result Table (
[DBName] Varchar(100),
int,
Log_Size float,
Log_Space float
)
DECLARE @DBName Varchar(100)
DECLARE @SIZE int
declare...
March 9, 2009 at 11:33 am
What happens when you run sp_change_users_login 'report'
if it returns any records run sp_change_users_login 'Auto_Fix'
March 9, 2009 at 5:22 am
Will this toolkit be able to find the master record in a fuzzy match say you have a Thomas a Tom and a Terrance will it identify or make a...
March 5, 2009 at 12:41 pm
Thanks for the article....
Have you done any comparison of your results against the SSIS Fuzzy Lookup Data Flow Task?
Its just that I am working with this problem at the...
March 5, 2009 at 9:40 am
I can't see what you are attempting, but you can bring the data into you destination table then do an update on the field as a SQL task ie:-
update table...
February 16, 2009 at 3:17 pm
Viewing 15 posts - 106 through 120 (of 294 total)