Viewing 15 posts - 13,021 through 13,035 (of 13,457 total)
yes, you can directly restore a SQl 7 or a SQL 2000 database on SQL 2005, without any intermediate steps;
the restore process creates the mdb files in the SQL 2005...
June 6, 2006 at 7:18 pm
could there be an open transaction on the server that runs indefinately? that or a table lock might lock up the query, even though normally it might be quick.
June 6, 2006 at 7:02 pm
isn't this just a full outer join where the right table is null?
SELECT
Spanish
,English
FROM
Tbl1
FULL OUTER JOIN TBL2
ON Tbl1.Spanish = Tbl2.Spanish
AND Tbl1.English = Tbl2.English
WHERE Tbl2.English IS NULL
June 6, 2006 at 1:40 pm
could it be the user was denied access to the table, but has execute permissions on a stored proc that actually does the insert of the data?
June 6, 2006 at 10:44 am
i'm sure you already read the help that is available for osql; as you identified, there is no way to remove the line dashes separator directly with osql ; you...
June 6, 2006 at 10:32 am
this is part of the query analyzer: QA automatically puts the column names and a lineof dashes to separate the data from column names.
you will not get dashes if you...
June 6, 2006 at 9:57 am
how about this:
set nocount on
select @@version
select replace(replace(@@version,char(13),''),char(10),'')
results:
Microsoft SQL Server 2000 - 8.00.760 (Intel X86) Dec 17 2002 14:22:05 Copyright (c) 1988-2003 Microsoft Corporation Personal Edition on Windows NT 5.0...
June 6, 2006 at 9:40 am
"cleanup" is such a broad directive; i think we could help better if you could identify specific subsections of the cleanup;
what does cleanup mean in your situation? normalization? standardizing address...
June 6, 2006 at 7:56 am
can you post the udfs here so we can see what they are trying to do?
in some cases, you might be able to replace them, but in other situations, you...
June 6, 2006 at 7:42 am
there are also a few contributions in the scripts section that do a decent job for the price(free).
search for "Compare" in the "Scripts" section;
June 6, 2006 at 6:45 am
in a nutshell, yes you can, but by disabling constraints, you can insert data that does not adhere to the constraint definitions:
create table test
(testid int identity not null primary...
June 6, 2006 at 6:36 am
Thanks Tim;
it's wierd, when i run the the statement in question i get an error stating that SECUSER (which is a table in the database i called the proc from)...
June 3, 2006 at 7:04 am
i don't know if this will help you;
i create my scripts in hierarchy order, so that items that depend on other items are created AFTER they are added to the...
June 2, 2006 at 8:35 am
aonther alternative: Narayana Vyas Kondreddi wrote a stored proc that you pass the table name and it creates all the INSERT INTO TABLENAME statements: note you cannot use this to...
June 1, 2006 at 5:57 am
does the new table have a lot of constraints on it? are the number of rows being moved in the millions?
could tempdb be expanding in size in 10mb increments...
May 31, 2006 at 6:05 am
Viewing 15 posts - 13,021 through 13,035 (of 13,457 total)