Viewing 15 posts - 6,106 through 6,120 (of 7,429 total)
If you need items to execute in a specific or then join them click last piece of previous step hold CTRL key and click first piece of next step, keep...
May 3, 2002 at 5:00 am
Duplicate message, see responses http://www.sqlservercentral.com/forum/post.asp?method=Reply&TOPIC_ID=3828&FORUM_ID=9&CAT_ID=1&Forum_Title=General&Topic_Title=DTS+Steps+and+Tasks+in+Disconnected+Edit
"Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)
May 3, 2002 at 5:00 am
Yes, but it was a pain. What exactly are you running into and what do you need to be able to do when you have implemented?
"Don't roll your eyes at...
May 3, 2002 at 4:22 am
Which version of sql are you using?
"Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)
May 2, 2002 at 7:15 pm
Not sure, but this should do the trick
CREATE PROCEDURE TestLongParameterValue --(
-- wasn't sure you actually where inserting data and needed this parameter @InpValueList TEXT = ''
--)
AS
SET NOCOUNT ON
CREATE TABLE #tmpText...
May 2, 2002 at 7:07 pm
Another way would be to use CHARINDEX to parse it into a temp table like so
CREATE TABLE #tblSel (
sels int not null
)
--You will need to test this section, and may...
May 2, 2002 at 6:27 pm
Have no idea, but it is great to see that you found the issue since I would have never thought of that. Gotta love what you can find out with...
May 2, 2002 at 6:16 pm
Have you checked the ODBC drive thru another app to make sure you have configured properly? Something simple like Access.
"Don't roll your eyes at me. I will tape them in...
May 2, 2002 at 5:19 pm
Glad you found your solution.
"Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)
May 2, 2002 at 5:16 pm
You might love this, but after I tested it works you might want to try this instead.
DECLARE @batchno INT --Or whatever datatype you need
UPDATE
BatchTable
SET
Inuseflag = 'Y',
@batchno =...
May 2, 2002 at 5:02 pm
Index on computed columns is only available in SQL 2000 but it does have some limitations see "Creating Indexes on Computed Columns" in 2000 BOL.
"Don't roll your eyes at me....
May 2, 2002 at 4:33 pm
You can usually find good examples at http://www.planet-source-code.com .
"Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)
May 2, 2002 at 3:21 pm
Duplicate post see responses in http://www.sqlservercentral.com/forum/topic.asp?TOPIC_ID=3991&FORUM_ID=9&CAT_ID=1&Topic_Title=Import+Blocks+of+Data+into+db+Fields&Forum_Title=General
"Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)
May 2, 2002 at 3:18 pm
Can you give me an example of what is in the file. Not sure I understand. Also please don't cross-post.
"Don't roll your eyes at me. I will tape them in...
May 2, 2002 at 3:17 pm
Try
SELECT
*
FROM
tblX
WHERE
council_date >= DATEPART(yyyy,DATEADD(mm,-1,GETDATE())) * 100 + DATEPART(mm,DATEADD(mm,-1,GETDATE()))
If council_date is not an int the adjust with CAST(council_date AS INT)
"Don't roll your eyes at me. I will tape them...
May 2, 2002 at 3:15 pm
Viewing 15 posts - 6,106 through 6,120 (of 7,429 total)