Viewing 15 posts - 42,646 through 42,660 (of 49,571 total)
It's an ebook and Simple Talk was distributing it. Drop a PM/mail to Tony Davis (here or over at simple talk) and ask.
December 3, 2008 at 7:56 am
What's a form id?
Your questions aren't making much sense by themselves. Can you please explain, in detail, what you're trying to do and what's not working?
December 3, 2008 at 7:37 am
Jack Corbett (12/3/2008)
Use Gail's solution. Mine didn't handle values with .00 correctly.
Mine had that problem too, before I remembered about Ceiling.
December 3, 2008 at 7:35 am
smunson (12/3/2008)
December 3, 2008 at 7:24 am
nazaninahmady_sh (12/3/2008)
December 3, 2008 at 7:17 am
Edit: Didn't read the round up. Recalculating....
Edit 2: This one works.
declare @tbl table (Val numeric (8,2))
insert into @tbl values (0) -- to 0
insert into @tbl values (1.21) -- to 1.5
insert...
December 3, 2008 at 7:00 am
What does the schema of the destination table look like?
You said you had a query to copy the data over. Can you post it?
December 3, 2008 at 6:55 am
pri.amin (12/3/2008)
You are correct it has been asked before but the issue has progressed!!
It has? It's exactly the same error with exactly the same insert statement as I helped...
December 3, 2008 at 5:47 am
Can you post the schema of the two tables and the query please?
December 3, 2008 at 5:28 am
Correct me if I'm wrong, but hasn't this been asked and answered twice before? (exact same insert statement and exact same error)
http://www.sqlservercentral.com/Forums/FindPost610162.aspx
http://www.sqlservercentral.com/Forums/Topic610173-1291-1.aspx
December 3, 2008 at 5:09 am
Did you apply the patch to both the server and the machine you're running the client tools from?
December 3, 2008 at 4:51 am
Jerry Hung (12/2/2008)
I try to not Remote Desktop if I can, but R.D. makes sense over VPN or for long-running queries
What my colleagues used to do was RD into a...
December 3, 2008 at 4:49 am
jwbrown65 (12/3/2008)
We seem to be operable again.Thanks again everyone.
Great.
If I may suggest...
Evaluate your backup strategy in light of this event.
Set up a job to run checkdb (without...
December 3, 2008 at 4:46 am
Here's a query that should work
This will work providing you have no table partitioning. If you do, it may give strange results
select object_name(p.object_id), ds.name as FilegroupName
from sys.partitions...
December 3, 2008 at 4:45 am
I'm afraid not. Procedures must be called with the EXEC statement and a view may only contain a single SELECT.
If you need to join the output, you'll have to insert...
December 3, 2008 at 1:06 am
Viewing 15 posts - 42,646 through 42,660 (of 49,571 total)