Viewing 15 posts - 1,651 through 1,665 (of 2,647 total)
cw.izatt (2/16/2012)
Jeff Moden (2/16/2012)
cw.izatt (2/16/2012)
Why not? SQL is perfectly capable of handling it and if it is a dedicated SQL Server it is probably the best tool to use.
After...
February 16, 2012 at 3:24 pm
GilaMonster (2/16/2012)
SQLKnowItAll (2/16/2012)
If you don't know the answer to this, you probably should not be interviewing for the job.
So tell me then, how do you (not the database engine)...
February 16, 2012 at 3:12 pm
Evil Kraig F (2/16/2012)
SQLKnowItAll (2/16/2012)
jake.mayher (2/16/2012)
February 16, 2012 at 2:58 pm
Doesn't look like it in 2008. http://connect.microsoft.com/SQLServer/feedback/details/428844/enable-disable-intellisense-in-mgmt-studio-with-keyboard-shortcut
February 16, 2012 at 2:57 pm
jake.mayher (2/16/2012)
February 16, 2012 at 2:49 pm
I would start at the beginning... Open a command prompt and ping the server. If you can't then you have a connection issue. If you can, make sure that...
February 16, 2012 at 2:46 pm
If you don't know the answer to this, you probably should not be interviewing for the job. Nevertheless, start here and learn about the different types of locks: http://msdn.microsoft.com/en-us/library/ms175519.aspx
February 16, 2012 at 2:43 pm
What exactly are you asking? Are you trying to create a lock for some reason? Teaching? Demonstration? Testing?
February 16, 2012 at 2:31 pm
Yes, but what I am saying is that the actual data in the flat file is NOT 255. It is longer.
February 16, 2012 at 2:15 pm
Jeff Moden (2/16/2012)
SQLKnowItAll (2/16/2012)
cw.izatt (2/16/2012)
I agree with above, why handle all of that inside SQL?
Why not? SQL is perfectly capable of handling it and if it is a dedicated...
February 16, 2012 at 2:07 pm
Glad to help!
February 16, 2012 at 1:46 pm
It means that the data in one of the columns is too long for the target table:
Run each statement separately.
CREATE TABLE #temp (integer int, characters varchar(5))
INSERT INTO #temp
SELECT 1, 'jared'...
February 16, 2012 at 1:42 pm
Inquiring minds want to know... What was the issue and how did you solve it?
February 16, 2012 at 1:37 pm
Brandie Tarvin (2/16/2012)
SQLKnowItAll (2/16/2012)
February 16, 2012 at 12:32 pm
Viewing 15 posts - 1,651 through 1,665 (of 2,647 total)