Viewing 12 posts - 1 through 12 (of 12 total)
The purpose of a relational database is to have foreign keys where foreign keys exist. (There are exceptions,of course..in some transactional tables you may not do that-- although you'd...
March 2, 2009 at 5:51 am
Why don't you just delete the file first ?
xp_cmdshell 'del c:\filelocation'
March 2, 2009 at 2:15 am
I really wouldn't address this in the model. Instead... if I were doing this then I generate these business rules with dml triggers.
March 2, 2009 at 2:08 am
One thing you can look for with sp_who is suspended processes. If you see a lot of suspended processes.. this could be solution. This may or may...
March 2, 2009 at 2:05 am
You're pretty much SOL with 64 bit sql server unless you can find a jet driver for 64 bit.
March 2, 2009 at 2:02 am
Dynamic sql and.. alter table ... encaspulated in a ddl trigger.... not that I recommend doing that. If " " is really null.. why not just allow it to...
March 2, 2009 at 2:01 am
My suggestion for this is to run a job periodically using openrowset, and a "temporary" linked server. Search BOL for openrowset.
HTH
March 2, 2009 at 1:58 am
If I understand you...
use master
declare @db table
(
[db_name] varchar(100)
)
insert @db
select [name] from [master]..sysdatabases
where [name] not in ('master','tempdb','model','ReportServer','ReportServerTempDB')
declare @q varchar(max)
set @q= 'use ; select o.[name] from sysobjects o join syscomments c...
March 2, 2009 at 1:53 am
For posterity sake... this was solved by reducing parallelism for sql server on the server. Worker threads in the index generation process were suspending and locking each other.
March 1, 2009 at 11:31 pm
There are maybe 5 ways to do this. Search for BCP in BOL.
HTH
March 1, 2009 at 11:18 pm
I'd do it this way... 96 left 😉
Probably some clever way to do this with CTE as well..
create table pr_ts
(
ID INT identity(1,1) primary key,
Comments VARCHAR(50),
ProjID INT,
EmpID...
March 1, 2009 at 10:53 pm
Viewing 12 posts - 1 through 12 (of 12 total)