Viewing 15 posts - 8,131 through 8,145 (of 15,381 total)
What is the relationship between these tables? This sort of looks like a hybrid EAV. Do you have to look in the RefModule column in each table to know which...
June 3, 2013 at 7:36 am
The issue here is that I can't even come close to executing this on my server. There are a lot of missing pieces here.
Users
udf_GetMonthsInDateRange
Booking
Employee
MU_Employee_Department
Position
Department
MU_Attendee_Bookings
And Varchar(music)???
Probably the easiest way to get...
June 3, 2013 at 7:30 am
philosophaie (6/2/2013)
I am using Microsoft SQL Server 2008 R2.
That is the backend, not the front end. Please take a look at connection strings.com. It provides examples for nearly every connection...
June 2, 2013 at 8:46 pm
I am by no means a MySql expert. Can you import it from the MySql side? You may have to do a two step process. First export from sql to...
June 2, 2013 at 9:10 am
Duplicate post. Direct replies here. http://www.sqlservercentral.com/Forums/Topic1458992-20-1.aspx
June 2, 2013 at 9:07 am
You don't need to split this to achieve the results you are looking for. All you need is a simple replace.
select replace(Name, '*', ' ')
June 2, 2013 at 9:05 am
julie 75341 (6/2/2013)
character constant must contain exactly one character
This is what I am...
June 2, 2013 at 8:57 am
philosophaie (6/2/2013)
I have SQL Server 2008 R2.I need the location and name of SQL Server 2008 R2 to put into my connection string.
Well we can't really help too much. You...
June 2, 2013 at 8:54 am
sasi947 (6/2/2013)
How to rollback an insert query on sql server ? , please suggest bit high priority .. thanks in advance
Is it in an explicit transaction? If...
June 2, 2013 at 8:50 am
kiran.vaichalkar (6/1/2013)
2nd question is now addressed
an you also let me know what special we need to do to get the below executed correctly
SET IDENTITY_INSERT USERS.ID ON
Where USERS(ID INT PRIMARY...
June 2, 2013 at 8:48 am
The most straight forward way is to NOT store calculated data. You should just have to be calculated as you need it. AvailableSeats = InitialSeats - sum(RegisteredSeats).
The query you have...
June 1, 2013 at 3:50 pm
kiran.vaichalkar (6/1/2013)
Please help me on below few queries
My table is
Users(ID IDENTITY(1,1) PRIMARY KEY, NAME nvarchar(10), MANGER_ID fk_User_id References ID)
1) now im trying SET IDENTITY_INSERT USERS.ID OFF
But...
June 1, 2013 at 3:46 pm
seshagirikudaravalli (6/1/2013)
Could not allocate space for object 'dbo.SORT temporary run storage: 141509403869184' in database 'tempdb' because the 'PRIMARY' filegroup is full. Create...
June 1, 2013 at 3:43 pm
I don't there is a choice of which is "best". The "first query" is not a single query, it is several of them. It depends on what you want as...
June 1, 2013 at 3:38 pm
In order to help we will need a few things:
1. Sample DDL in the form of CREATE TABLE statements
2. Sample data in the form of INSERT INTO statements
3. Expected results...
June 1, 2013 at 3:36 pm
Viewing 15 posts - 8,131 through 8,145 (of 15,381 total)