Viewing 15 posts - 9,991 through 10,005 (of 18,923 total)
How does that fix the sort order?? aside from avoidig the problem?
March 29, 2007 at 3:21 pm
I'm not sure I'm following here, what did you do exactly?
March 29, 2007 at 3:02 pm
If there is I never hit it. What problem are you encountering?
March 29, 2007 at 2:21 pm
That works... but that's not without its share of downsides...
March 29, 2007 at 1:07 pm
That's how close I can get it with the collation sort option.
DECLARE @demo TABLE (id INT NOT NULL IDENTITY(1,1), Name VARCHAR(50))
INSERT INTO @demo (Name) VALUES ('hello')
INSERT INTO @demo (Name) VALUES...
March 29, 2007 at 12:34 pm
Declare @out as int
exec dbo.MyProc @out output
PRINT @out
You must supply the parameter in that fashion to execute the procedure.
March 29, 2007 at 11:09 am
I had similar problems once. What I is create a new Access data project, and reconnect to the server and then selecting a db. If that fails you can always reconnect...
March 29, 2007 at 11:08 am
Hence another advantage of using t-sql to make ddl changes :
alter table dbo.tblname
alter column a int not null
You can't change the columns' order that way, but you don't ever...
March 29, 2007 at 6:34 am
Check out books online. It replaces all occurances of the @sArea in @Status3 with nothing ('').
March 29, 2007 at 6:32 am
Can you post the actual execution plan (text version pls)? I'm sure something obvious is spliping by all.
March 28, 2007 at 12:35 pm
I once saw someone use the clustered index in the indexhint. I can't confirm this but it should guarante the order of the update.
March 27, 2007 at 8:15 am
Must have gone out of range of the datetime datatype... or a date setting has changed (but I'd go with the datetime limit).
And just to make sure we are on...
March 26, 2007 at 12:40 pm
I don't think so. I recently noticed that top 100 percent is automatically added to the view definition when using the order by, but it is not automatically removed when...
March 26, 2007 at 12:21 pm
@@dbts is not a datetime. It is only a unique number generated by sql server.
Check out GetDate() for the current_timestamp
March 26, 2007 at 12:20 pm
Viewing 15 posts - 9,991 through 10,005 (of 18,923 total)