Viewing 15 posts - 1,861 through 1,875 (of 2,009 total)
since I apparently took too long posting my original answer and the page timed out you're goign to get a short sweet and to the point one. I compact my...
July 5, 2006 at 7:01 am
How is performance on your current server? Good, bad, ugly? Given the 2 optiosn you list I'd suggest option 2, becasue it doesn't look like option one has any redundancy...
July 3, 2006 at 2:11 pm
Or this may have some insights as well...
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=9&messageid=190160
July 3, 2006 at 1:52 pm
Have you granted the "users" group any acess to specific databases, tables, veiws etc? will they only need read, or will them need CRUD access?
July 3, 2006 at 1:33 pm
Is this what you're looking for??? Please excuse the formatting....
CREATE TABLE #myTable(
Key_m int IDENTITY NOT NULL,
GeographicCode varchar(10) NULL,
Year_census_estimate int NULL,
Sex int NULL,
Age_start int NULL,
Age_end int NULL,
Person_count float(8) NULL,
Age_range varchar(21)...
July 3, 2006 at 9:10 am
Have you set the task that is failing to run on the Main Package Thread? I have seen this error thrown before and the solution I'd found on the web...
July 3, 2006 at 8:41 am
Is this what you're looking for?
UPDATE #temp
Set col3 = 'whatever', col4 = 'whatever2', col5 = 'number'
WHERE col1 = 'A' and col2 = '101
July 3, 2006 at 8:20 am
What I do is write to the local machine and then in the next step of the SQL Agent Job I copy it out to my network location. I've found...
June 30, 2006 at 1:06 pm
Theoretically the SELECT INTO Sytax should create the new table for you and then populate with whatever records you need. Since you already know what columns should be in your...
June 28, 2006 at 1:14 pm
Are you usign the copy table method or an SQL Query in the Source tab of your Data Transformation step? Would it make sense to store the start time and...
June 28, 2006 at 12:59 pm
Alternantively if you really want to read through all of those signle quotes, you can still use your open query, but use a
Select * INTO #mytable FROM OPENQUERY(...
June 28, 2006 at 12:52 pm
Why not just bring the data over with DTS. It's much easier and you dont' have to worry about being in Single quote hell. Just create a connection onject to...
June 28, 2006 at 12:49 pm
Depending on what kind of clients you have you may need to do this either in Wins or DNS or most likely BOTH. Why not setup an alias that points...
June 28, 2006 at 12:46 pm
Are both servers at the same Service pack/hotfix level? I've never seen this particular problem but have had issues in the past when transfering DTS jobs and that was the...
June 27, 2006 at 9:41 am
Take a look at this and see if it helps...
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=150&messageid=185005
June 27, 2006 at 9:38 am
Viewing 15 posts - 1,861 through 1,875 (of 2,009 total)