Viewing 15 posts - 451 through 465 (of 1,186 total)
Research ALTER TABLE in BOL or you can perform this via EM
March 30, 2005 at 8:57 am
UDFs AND SPs are both compiled. Granted their are specific instances that force SPs to be recompiled but generally that is not the case.
You will still need a sp to...
March 30, 2005 at 5:26 am
Unfortunately, I don't think we can add much without seeing the view(s) to help diagnose your problem..
March 30, 2005 at 5:24 am
You will WRITELINE your oFile to a text file. There are plenty of sample scripts in VB BOL, and on the internet (to include decent from support.microsoft.com) with textstream, writeline,...
March 30, 2005 at 5:23 am
I would research BEGIN TRANSACTION in BOL. That will give you #2. #1 is more art then science and BOL doesn't cover it. I think your easiest bet will be...
March 28, 2005 at 4:53 pm
I think you are missing techarea from your GROUP BY as well...
March 28, 2005 at 4:50 pm
You are correct there is a system table that stores descriptions of FIELDS but not a TABLE descriptor. These are extended table properties and you can look them up in...
March 28, 2005 at 4:49 pm
Why not fire the EXE via xp_cmdshell in QA?
March 28, 2005 at 2:20 pm
March 28, 2005 at 1:35 pm
basically you need to build a temp table and populate column A with your ID list. You will then need to LOOP (any way you prefer) and start with the...
March 28, 2005 at 1:32 pm
Why are you using , 101 when you are doing CONVERT(DATETIME)???? Located in INSERT statement...
If you are converting to VARCHAR(10) change the DATETIME to be VARCHAR(10)...
March 28, 2005 at 1:28 pm
Try
CASE COUNT(App.techarea) WHEN < 1 THEN COUNT(App.agency_id) WHEN > 1 THEN COUNT(App.techarea) END AS CountOfTA
OR
you could just add the END reserved word after your 2nd THEN.....
March 28, 2005 at 10:32 am
I think your problem is cust_ord_due = '2005-03-28' AND GetDate() = '2005-03-28 12:14:00.000'
Change your code to be CONVERT(VARCHAR(10), GETDATE(), 101) and your code should work. If you want to WRAP...
March 28, 2005 at 10:29 am
I would make sure that the RunAS for the SQL job has rights to perform the activities involved. When you run the package it uses YOUR rights... May be permission...
March 28, 2005 at 10:10 am
IF you have this hard-coded in the DTS packages there is no way around... IF you use UDL file or some other mechanism for the connection change in 1 place...
March 28, 2005 at 10:08 am
Viewing 15 posts - 451 through 465 (of 1,186 total)