Viewing 15 posts - 46 through 60 (of 183 total)
I also agree with Gail. I would look at how you are making changes on a fundamental level. Create yourself a deployment document with steps and check lists....
April 23, 2009 at 10:31 am
Look at User Defined Data Types in Books Online. You can create a data type of your choice and give it a check constraint and default value in a...
April 23, 2009 at 10:26 am
The main impact will be if you run any other services, applications, etc on this machine. As now their thread priority will be dropped and you will see poorer...
April 22, 2009 at 10:36 am
You may have an issue with your VPN setup. Kind of hard to tell without knowing more about your setup. Can you ping your test server, telnet, or...
April 22, 2009 at 10:29 am
Yes it is possible in VMWare Server (and I assume as well in Microsoft's tech as well) as I have set this up in a lab. I do not however...
April 22, 2009 at 10:23 am
On the first item do you need the decimal data still there? For example if the field contains data like 123.45 do you need 123 or 12345? If...
April 15, 2009 at 10:19 am
Don't make it a subquery. There is no need. Just select the max value for the colum in a standard select and insert the variable value for...
April 10, 2009 at 1:57 pm
You could also try...
INSERT INTO Items ([PartNum], [ItemOrder])
SELECT @Part_Num, MAX(ItemOrder)
FROM TableX
WHERE TableX.Part_Num = @Part_Num
April 10, 2009 at 1:37 pm
You wont find any stock components in 2005 to write image files out directly using T-SQL. My suggestion would be .NET code or use of SSIS. SSIS has...
April 7, 2009 at 1:02 pm
Depending on the quantity of data you may want to look at SSIS. You can read the source data and use a multicast component to create multiple feeds of...
April 7, 2009 at 12:57 pm
Thank you. Seems to work well.
April 3, 2009 at 7:06 am
Thanks. This seems to work well with the small test data I have setup.
April 3, 2009 at 7:06 am
If you are testing this across two machine then likely the issue is not service packs. Its probably a difference in hardware, install settings, configuration etc. That being...
March 27, 2009 at 10:44 am
One option is that you can send error rows to a seperate output flow. So send them to another task like writing them to an error table or file....
March 23, 2009 at 10:57 am
Decided to do a quick search and found an arcticle referencing this code. Seems to work on my 2K5 cluster.
SELECT SERVERPROPERTY('ComputerNamePhysicalNetBIOS') ActiveNode
March 20, 2009 at 10:22 am
Viewing 15 posts - 46 through 60 (of 183 total)