0
votes
6answers
107 views
Interesting SQL problem
I have a SQL problem I am trying to digest. I am using SQL Server 2005.
In a table I have data as such:
ID Type
1 A
2 A
3 A
3 B
4 B
I nee …
1
vote
1answer
12 views
Problem adding foreign key in simple setup
I have two tables
Users
Users_Role
I decided to try to add a foreign key as to my understanding it will let me cascade the delete procedure when removing a user from Users (as w …
1
vote
3answers
71 views
2147217833 String or binary data would be truncated
Hi Have an error occuring when I try to update a record via stored procedure.
The error I get is 2147217833 String or binary data would be truncated.
I've done a length on each of …
0
votes
6answers
49 views
How to calculate difference in hours (decimal) between two dates in SQL Server?
I have to calculate the difference in hours (decimal type) between two dates in SQL Server 2008.
I couldn't find any useful technique to convert datetime to decimal with 'CONVERT' …
0
votes
2answers
37 views
T-Sql, How to get these results ?
This query
SELECT PA.refPatient_id
,MAX(PA.datee) AS datee
,PR.temporary,PA.statue
FROM PatientClinicActs AS PA
,PatientStatueReasons AS PR
…
0
votes
1answer
12 views
Combining multiple TSQL change scripts with skipping
I have a bunch of TSQL change scripts, all named appropriately in sequence.
I want to combine these into one big script with a few twists. I include a version number function in t …
0
votes
5answers
43 views
Search if a string word exists between two different tables in a comma-delimited field
I have two tables:
EmployeeTypeA table
Name varchar(2000) field contains - 'john,sam,doug'
EmployeeTypeB table
Name varchar(2000) field contains - 'eric,sam,allen,stephanie'
Wha …
0
votes
3answers
38 views
I need to retrive last of these results? (T-SQL)
This query:
SELECT refPatient_id,actDate,refReason_id,refClinic_id,active
FROM PatientClinicHistory
WHERE refClinic_id = 24
GROUP BY refPatient_id,actDate,refReason_id,refClinic_ …
0
votes
1answer
43 views
SQL Convert Rows To Columns
I know this has been asked a few times before, but I can't find any solution that fits my example.
I currently have a table of user permissions to use certain pages. The table wou …
0
votes
3answers
50 views
Change case of a column name
I have a table in my warehouse that has columns in all uppercase. It scripts out like this:
CREATE TABLE [dbo].[Outlet](
[OUTLET_KEY] [varchar](10) NOT NULL,
[OUTLET] [var …
2
votes
5answers
65 views
Convert number to varchar in SQL with formatting
Is there a way in T-SQL to convert a TINYINT to VARCHAR with custom number formatting?
For instance, my TINYINT has a value of 3 and I want to convert it to a VARCH of 03, so that …
2
votes
6answers
69 views
Select rows that are different in SQL
I have a table with way too many columns and a couple million rows that I need to query for differences.
On these rows there will hopefully be only one column that is different an …
0
votes
2answers
74 views
SQL Server: One Table with 400 Columns or 40 Tables with 10 Columns?
I am using SQL Server 2005 Express and Visual Studio 2008.
I have a database which has a table with 400 Columns. Things were (just about manageable) until I had to perform bi-d …
0
votes
1answer
18 views
Getting rowcount of a common table expression CTE into a parameter for paging
My friend here is coding a web page with a datagrid that has paging. We were able to get the total pagecount into a column as a window function but we can't figure out how to get i …
0
votes
4answers
32 views
SQL Copy Row for a list, change one column value
I need to duplicate a row a couple thousand times. I need to change one column from the copied row based on a list of ids.
Psuedo-code:
INSERT INTO MyTable (TabID, Other Columns) …

