Viewing 15 posts - 301 through 315 (of 433 total)
The error code 0x80040154 is for "Class Not Registered". I'm wondering if your connection values are correct?
There is a section on this site: http://weblogs.sqlteam.com/phils/ about...
April 26, 2007 at 5:28 am
You could use EM to generate a single T-SQL script. Right-click on the database name > All Tasks > Generate Sql Script. Click on the show all button and you...
April 26, 2007 at 5:17 am
Hi,
It's possible to monitor the current activity by either capturing the results of sp_who2 or querying the sysprocesses and syslocks/syslockinfo tables.
I would be careful about automatically killing processes.
April 26, 2007 at 5:09 am
Hi,
I've never used SAS but can you set up a System DSN pointing to the SAS source on your Sql Server machine? If so you should be able to use...
April 26, 2007 at 4:42 am
Hi,
You can execute the DTSRUN utility using master.dbo.xp_cmdshell passing the variables in to defined GlobalVariables.
DECLARE
@var1 INT
DECLARE @var2 VARCHAR
April 26, 2007 at 4:28 am
Hi,
I don't think it's possible to create constraints on Image columns. You also can't reference them in the inserted/deleted tables of triggers.
There is a workaround that involves a trigger. You...
April 25, 2007 at 10:30 am
I can't see the screenshot, can you type the Error message please?
April 25, 2007 at 9:52 am
David,
Definitely more elegant than mine!! Should've seen that. I went through all sorts of JOIN routes and everything.
April 25, 2007 at 9:44 am
I don't know whether I'd call it elegant but this works:
DECLARE @invoices TABLE (AccountNumber INT, InvoiceNumber INT, InvoiceDate DATETIME, RowID INT)
INSERT INTO...
April 25, 2007 at 9:02 am
Have you got the MSDN link please? I think it'll be quite interesting to see what they're doing.
Thanks!
April 25, 2007 at 8:37 am
You can get a list of the local packages by querying tables within the MSDB database.
SELECT * FROM msdb.dbo.sysdtspackages
There are other tables in the MSDB database to do with DTS information also:
sysdtscategories
sysdtspackagelog
sysdtssteplog
sysdtstasklog
Is...
April 25, 2007 at 8:19 am
That's probably a lot better than I would have done.
And quicker too!
April 25, 2007 at 6:48 am
With that, I'm not sure DTS is the best way to go...
Can I just check with you to make sure that I understand...
April 25, 2007 at 5:53 am
You could use the DTS Import/Export Wizard in Enterprise Manager to copy table data. Right-click on the tablename in the list in EM and choose All Tasks > Export Data....
April 25, 2007 at 5:01 am
Viewing 15 posts - 301 through 315 (of 433 total)