Viewing 15 posts - 1,321 through 1,335 (of 2,051 total)
Perhaps you could pass the subheader as a parameter as well.
Is this like
Questionnaire
Header
Header_level2
Header_level3...
?
December 22, 2006 at 5:26 am
a wild guess, do both tables have a primary key or unique index?
December 20, 2006 at 2:36 pm
Any reason why you wouldn't use 10k or 15k rpm drives instead of 7200 rpm's except the cost?
December 20, 2006 at 2:34 pm
Try using (not) exists instead of (not) in. The exists halts when it finds one record, in requires finding them all before comparision.
December 18, 2006 at 10:57 am
Have a look at
http://www.sql-server-performance.com/sql_server_log_shipping.asp
to setup logshipping.
December 18, 2006 at 10:26 am
Replication is supported in the standard edition. Log shipping can also been done by manual implementation.
The only reason so far I would like to upgrade to enterprise is it can...
December 18, 2006 at 6:25 am
Perhaps the vendor knows if the systemadministrator rights are required ( or only db_owner rights).
You could also explain this huge risk to the management side.
(Someone changing the password ->...
December 18, 2006 at 6:23 am
nr 2.
You can use the inner join. The results for invoice,lineitem will be null if no matching customer is found.
December 16, 2006 at 8:23 am
Thanks again, it worked out.
Script:
DECLARE @Tablename nvarchar(128)
DECLARE @UserName nvarchar(128)
DECLARE @ConcatName nvarchar(128)
DECLARE @DatabaseName nvarchar(128)
CREATE TABLE #Databases
(
Databasenaam nvarchar(128)
)
CREATE TABLE #temp2(
rec_id int IDENTITY (1, 1),
username varchar(128),
table_name varchar(128),
nbr_of_rows int,
data_space decimal(15,2),
index_space decimal(15,2),
total_size decimal(15,2),
percent_of_db decimal(15,12),
db_size decimal(15,2),
dbname...
December 15, 2006 at 3:53 am
Thanks for the suggestion, I'll try that one out.
December 14, 2006 at 12:38 pm
The second one could be faster because the server can check its statistics more quickly.
I would suggest using inner join instead of Title T, TitleSearch TS
Select ...
from title T inner...
December 7, 2006 at 5:01 am
Can you log on as the user on the database using enterprisemanager, queryanalyzer? The securityid of the user in the database might be different than the one in the master-database
November 27, 2006 at 2:37 am
Beware that RAID 5 is slower for writing. Consider RAID 1+0 instead.
November 17, 2006 at 5:12 am
Have you tried
execute master.dbo.xp_cmdshell 'c:\project.exe'?
November 15, 2006 at 12:43 am
Have you checked http://support.microsoft.com/kb/839279?
November 14, 2006 at 9:53 am
Viewing 15 posts - 1,321 through 1,335 (of 2,051 total)