Viewing 15 posts - 706 through 720 (of 1,065 total)
That article pertains to SQL 2000. I'm using 2005, although in compatibility mode 80....does that mean I'm defacto operating under 2000 parameters?
Sorry, I'm still stuck on SQL 2000 with this...
September 10, 2008 at 8:14 am
e.g. for test purposes
create table mytable (id int not null identity(1,1) primary key,
col2 varchar(150) not null ,
col3 datetime not null default getdate() )
go
/* Fill table with 15000 rows */
insert...
September 10, 2008 at 8:00 am
I have the same issue, and posted a question a while ago:-
http://www.sqlservercentral.com/Forums/Topic534396-9-1.aspx
There is a link to some MS articles about the problem, but the solutions are painful!
September 10, 2008 at 7:17 am
Yes it has... as I started with, the SP that imports data from that file works well
Oops, sorry - helps if I read the whole post.:Whistling:
xp_fileexists won't work with networked...
September 10, 2008 at 4:57 am
Does the service account that SQL Server runs under have permissions to the networked drive?
If you are running SQL Server under the local system account, it will have no access...
September 10, 2008 at 4:05 am
Using exactly the same hardware, data, workload etc, I saw an overall improvement of about 20% after upgrading to SQL 2005 (leaving the databases in 80 compatibility).
And... SQL Server 2000...
September 10, 2008 at 3:03 am
What happens seems to depend on the SQL Client/Options in use, rather than which version of SQL is at the back end.
The script executes 10 times if I run it...
September 10, 2008 at 2:57 am
Sounds as though someone has manually created some statistics on the column using CREATE STATISTICS.
Just drop the statistics using
DROP STATISTICS MEMBER_DETAIL.MEMBER_TYPE
before altering the column
September 9, 2008 at 8:56 am
Do you have the AutoShrink option switched on for the database?
September 5, 2008 at 8:35 am
I have frequently seen that sort of behaviour.
Setting the "Collation Compatible" option to true for the linked server has helped occasionally. This is what BOL has to say about to...
September 5, 2008 at 8:03 am
Just to add to Jack's (very good) explanation:-
If SSN, LastName, FirstName, MiddleName, DateOfBirth are the primary key, what happens if LastName changes through marriage or mistyping in the first place......
September 5, 2008 at 7:49 am
It doesn't make any difference in which order you write the WHERE clause.
SQL Server will look at the WHERE clause as a whole, and work out the best way...
September 5, 2008 at 6:00 am
Replication will complain if it tries to replicate a delete to server 2, and your users have already deleted this data, or an insert that already exists etc.
You will need...
September 5, 2008 at 3:53 am
If the job is scheduled to run automatically, it will start with the correct step.
It's only if you invoke the job manually, that it asks which step to start...
September 5, 2008 at 3:48 am
The sysntax is right, but now it either can't find the server, or the server won't allow the remote connection. Are you sure there isn't a typo in the instance...
September 4, 2008 at 8:06 am
Viewing 15 posts - 706 through 720 (of 1,065 total)