Viewing 15 posts - 5,956 through 5,970 (of 13,460 total)
notice how i provided all the code you might need to test the solution? if you can do the same, by providing either CTE or CREATE TABLE...INSERT INTO statements, you'll...
Lowell
February 8, 2012 at 10:05 am
sj999 (2/8/2012)
I want to find all customer IDs that have txn type AB occurring within 24 hours of txn type CD for that customer for the years 2010 and 2011....
Lowell
February 8, 2012 at 5:35 am
shah.simmy (2/7/2012)
if two tabel has two same schema,but not primary - foreign relation,i want to identify matching record from both table.how can i do it,i cant use join thre
a foreign...
Lowell
February 7, 2012 at 7:34 pm
linqpad is something i always carry in my portable apps flash drive;
it's got multiple query window/tabs, syntax highlighting as well as an object explorer and ability to run/test...
Lowell
February 7, 2012 at 6:51 pm
you skipped over the reason i stated previously. slow down and read a little deeper.
there are TWO instances of SQL on the server.
the default instance, which is already using...
Lowell
February 7, 2012 at 2:49 pm
you cannot. simply reset the password to a new known value.
Copy
ALTER LOGIN Mary5 WITH PASSWORD = '<enterStrongPasswordHere>';
Lowell
February 7, 2012 at 2:19 pm
the screenshot you posted showed port 1433, which is wrong. it cannot be 1433,
choose another port.
i personally like 14330., but that's me.
Lowell
February 7, 2012 at 2:17 pm
Laura as I remember it, it mostly depends on the error level that gets raised.
anything 16 or above, like foreign key violations, constraint violations, etc cannot be handled in...
Lowell
February 7, 2012 at 1:45 pm
halifaxdal (2/7/2012)
Lowell
February 7, 2012 at 12:18 pm
since this is a named instance and not the default instance, I'm sure it is using dynamic ports, which will NOT be 1433.
to make it easier, i'd recommend changing...
Lowell
February 7, 2012 at 12:09 pm
the existing data has trailing spaces; converting the column to varchar does not auto-trim the existing data.
now if you run our original update statement, you should see the difference.
Lowell
February 7, 2012 at 11:18 am
fawadafr (2/7/2012)
Thanks for the feedback. I tried executing the following SQL statement but was unable to change the field type.
ALTER TABLE [dbo].[document_control] MODIFY COLUMN [doc_path] [varchar](256) NULL
Could you please help...
Lowell
February 7, 2012 at 10:46 am
well the matching RTRIM function will remove trailing spaces...so i think you want something like this:
UPDATE [dbo].[document_control]
SET [doc_path] = LTRIM(RTRIM([doc_path]))
Lowell
February 7, 2012 at 10:21 am
2008 R2...is that 64 bit?
if it is, you have to use 64 bit MYSQL drivers in order to create a linked server.
that would be one more thing to double check....if...
Lowell
February 7, 2012 at 9:53 am
it's gotta start with the basics, i think:
since its an express instance, is the checkbox for allow remote connections checked? maybe via the Configuration?


next, and probably the most...
Lowell
February 7, 2012 at 8:35 am
Viewing 15 posts - 5,956 through 5,970 (of 13,460 total)