Viewing 15 posts - 9,991 through 10,005 (of 18,926 total)
The join syntax is different between Access and Sql server.
March 30, 2007 at 2:09 pm
I don't know of any unpivot function in 2005.
However this works in any version :
--Insert into normalized table...
Select SerialNumber, AccountName, Op0Name AS OPName, Op0Date AS OPDate, Op0Value AS OPValue FROM...
March 30, 2007 at 7:37 am
Personally I would export all the sps text to a single text file. Do my search and replaces there. Run the alter scripts in QA environement. Then once all typos...
March 30, 2007 at 7:12 am
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
Viewing 15 posts - 9,991 through 10,005 (of 18,926 total)