Viewing 15 posts - 1,201 through 1,215 (of 1,270 total)
Yes, but you'll have to issue it in Query Analyzer not Enterprise Manager. Make certain that any insert queries running while you have it turned off are inserting an identity...
June 2, 2004 at 11:55 am
Joins are always executed before the where criteria.
In queries with more than 1 join, you can sometimes make the query more efficient by moving some of the criteria to the...
June 2, 2004 at 11:31 am
Interesting way to do it. I don't think it's ideal for this particular instance, but I can think of some instances where it would be ideal. For example, if a...
January 23, 2004 at 11:56 am
No they sort the same way. However, if the sort seems different, I would check the data types of the fields. Perhaps one field is a number in Access and a...
January 20, 2004 at 12:33 pm
Don't use the table names in the select list:
CREATE VIEW IMEXtrlrUtilUNIONasapSM_VW as
SELECT top 100 percent OrderNbr, City, Shipper, Weight
from IMEXtrlrUtilShipMat_VW
Union
select top 100 percent OrderNbr, City, Shipper,...
January 20, 2004 at 10:59 am
Perhaps I would understand better if you told me what the error is. I'm good, but I'm not psychic.
January 20, 2004 at 10:38 am
What is the error? On what are you joining?
An inline table function doesn't return field names or field information. You may need to do a Multi-statement table-valued function so that...
January 20, 2004 at 2:45 am
Off-hand, I can't think of anything that you can format with Format$() that you can't format in T-SQL using the built-in functions. Maybe if you were more specific about what...
January 20, 2004 at 2:31 am
Yes, that's true. Changing it is a major thing. Setting it up that way to start with is very simple.
January 19, 2004 at 2:23 pm
We use merge replication too, but we do not replicate stored procedures. It's just a matter of unchecking the appropriate boxes. You don't have to change replciation type.
Also, I hope he's...
January 19, 2004 at 1:18 pm
I agree. Drop and create.
January 16, 2004 at 11:58 pm
Try using sp_password to change the sa account's password by using NULL for the old password. If that doesn't work, try changing yours that way.
Otherwise, the MS solution for changing...
January 16, 2004 at 1:11 pm
Mine too. And all of my remote servers have an IsRemote of 0.
January 16, 2004 at 12:13 pm
Yep, just do it the same way. As long as your login has permissions to do it.
Exec SQL021.SomeDB.dbo.MyProc @Param1 = 'Somedata'
January 16, 2004 at 10:11 am
First off, you can't simply select text data into a varchar variable (or field). Text data is in binary format. Selecting the text field will only return the amount of...
January 16, 2004 at 10:06 am
Viewing 15 posts - 1,201 through 1,215 (of 1,270 total)