Viewing 15 posts - 1,531 through 1,545 (of 2,268 total)
Create a new database or upgrade to SQL standard edition.
March 9, 2009 at 8:20 am
DURGESH (3/9/2009)
hi ssIt works fine if col1 is integer, but if col1 is varchar then it is not working
You will need to convert col1 to an INT use;
...
March 9, 2009 at 4:49 am
Check your error logs there will be a more descriptive error message in there
March 5, 2009 at 5:33 am
Transactional replication does not invovle adding an extra column to your table
March 5, 2009 at 3:50 am
winston Smith (3/4/2009)
tbl.columnName <> 'ACT'
In the actual table tbl.columnName is NULL. I thought NULL is not equal to 'ACT'. but nothing is selected...
March 4, 2009 at 10:01 am
yulichka (3/4/2009)
How to add First and Last Name to one field as NameSelect FirstName + Last Name as Name from tbl1
Select FirstName + ' ' + Last Name as...
March 4, 2009 at 9:20 am
nymgk_75 (3/4/2009)
Thanks for the reply! I like your way also...
Can you explain what the "U" is used for then? We didn't have that in the other...
March 4, 2009 at 9:17 am
sqlcentral (3/3/2009)
steveb (3/3/2009)
is...
March 3, 2009 at 1:14 pm
sqlcentral (3/3/2009)
steveb (3/3/2009)
No, this query will return all the distinct rows in your table where the level is the highest for each entry_Id and group_id
Ok, perhaps my sample data...
March 3, 2009 at 11:19 am
This is not possible with db mirroring as each database needs to be kept in synch.
The best idea i can think of , would be to automate a restore...
March 3, 2009 at 10:58 am
sqlcentral (3/3/2009)
steveb (3/3/2009)
Thanks, this code should work orderd by Level
SELECT * FROM YourTable WHERE LEVEL IN(
SELECT MAX(LEVEL) AS LEVEL
FROM YouTable
GROUP BY [entry_id], [group_id])
That will only...
March 3, 2009 at 10:55 am
This sounds like a reasonable approach.
The way I normaly handle things like this , would be to create a look-up table with all the JType values add a column ...
March 3, 2009 at 10:46 am
sqlcentral (3/3/2009)
Steveb: I already added another post with a column called level.
Thanks, this code should work orderd by Level
SELECT * FROM YourTable WHERE LEVEL IN(
SELECT MAX(LEVEL) AS LEVEL
...
March 3, 2009 at 10:26 am
Viewing 15 posts - 1,531 through 1,545 (of 2,268 total)