4
votes
What is the easiest way using T-SQL / MS-SQL to append a string to existing table cells?
Graphain's answer is correct if the column is a CHAR(20), but is not true if it was a VARCHAR(20) and the spaces hadn't been explicitly entered.
If you do try it on a CHAR field without the …
0
votes
SQL/Query tools?
Well if you liked TOAD then there is now TOAD for SQL Server: http://www.toadsoft.com/toadsqlserver/toad_sqlserver. …
4
votes
How do I create a mapping table in SQL Server Management Studio?
The easiest way is to simply select both fields by selecting the first field, and then while holding down the Ctrl key selecting the second field. Then clicking the key icon to set them both as the …
5
votes
SQL Server: Get data for only the past year
The following adds -1 years to the current date:
SELECT ... From ... WHERE date > DATEADD(year,-1,GETDATE())
…
1
vote
Simulating MySql’s password() encryption using .NET or MS SQL
You can encrypt strings using MD5 or SHA1 in .Net, but the actual algorithm used by MySQL is probably different to these two methods. I suspect it is based on some kind of 'salt' based on the insta …
1
vote
Is it possible to calculate MD5 hash directly in T-SQL language?
No, there is no native TSQL command to generate MD5 hash's in SQL Server 2000.
In 2005 and above you can use the HashBytes function: …
0
votes
Save XLSM file to Database column and retrieve ?
A couple of things strike me as possibilities.
Firstly, you are not calling reader.Read().
Secondly, there is not need for the check on retval == bufferSize …
1
vote
How to improve ‘Incorrect syntax near the keyword ‘select’.’
I don't believe you can have SET @var = SELECT ...
Try the following instead:
SELECT @sum = Sum(t.[VISITINGCOUNT]) from ...
I would also like …
1
vote
How do I update tables in SQL so that related strings match?
The following is I believe the simplest:
UPDATE TableB SET Path = TableA.Path
FROM TableA
WHERE TableB.Id = TableA.ID AND TableB.Path <> TableA.Path
…
0
votes
T-SQL datetimes substracting.
The reason for the issue you are seeing is the way SQL handles the two parts of the way it stores a date.
A date is stored as two part, inside a numerical value. The First part, the integer …
