Viewing 15 posts - 9,706 through 9,720 (of 18,926 total)
Picture link is broken Steve... No comment on the article as I've not read it, yet
.
July 4, 2007 at 7:15 pm
You can't imagine how happy I am to have bowed out of this one after day 1. I wish I could compute the time I saved by not reading that...
July 4, 2007 at 7:14 pm
Gonna save Jeff some typing.
You still don't need a cursor for that conversion. Use temp tables and batch convert the data before final import.
July 4, 2007 at 2:29 pm
Can't be done unless you know the system. This job is much easier to custum make than to be made by sql server.
July 4, 2007 at 1:39 pm
List all tables where the id has been present, then depending on wether this is n-n or 1-n, then you can simply replace the new id with the old id. ...
July 4, 2007 at 12:53 pm
Can you supply the table DDL please?
TIA.
July 4, 2007 at 12:05 pm
Here's a much shorter version of the same idea. I once had a trigger that was updating a column in a table RBAR style (select the row id, then update...
July 4, 2007 at 11:43 am
Can you post the code so we can look at it. We'll explain as we go along.
Short story : varcharCol1 + UnicodeStaticString + varcharCol2 ... = Unicode = 4000 chars...
July 4, 2007 at 11:35 am
USE SSC
GO
IF EXISTS (SELECT * FROM dbo.SysObjects WHERE Name = 'Demo' AND XType = 'U' AND USER_NAME(uid) = 'dbo')
DROP TABLE dbo.Demo
GO
CREATE TABLE dbo.Demo
(
TruckID INT NOT NULL
, StatusDate DATETIME NOT...
July 4, 2007 at 11:23 am
We need table DDL to answer this one.
One thing to check out is the make sure that no column is of unicode datatype (nchar, nvarchar) and not even some constant...
July 4, 2007 at 11:13 am
A problem / solution post is more usefull to the world than "solved".
Just my 2 cents.
July 3, 2007 at 1:50 pm
Hence the not necessary to do so. But it doesn't stop me from doing it all the time
.
July 3, 2007 at 12:00 pm
I'd like to see your final solution if you don't mind sharing it with the world. It may help someone else in the near future who is in the same...
July 3, 2007 at 11:55 am
On the onclick() event of the combobox, check the value of the combo and display/hide the textbox accordingly.
Then depending on wether the textbox has a datasource, then you may hve...
July 3, 2007 at 8:45 am
But now just imagine what I could get when I'll hit the 10K mark
.
July 3, 2007 at 5:06 am
Viewing 15 posts - 9,706 through 9,720 (of 18,926 total)