Viewing 15 posts - 5,671 through 5,685 (of 14,953 total)
lazy writer (12/14/2010)
I have created snapshot replication while creating this I have chosen options like generate snapshot immediately not on demand or schedule.
Here my doubt is for the snapshot...
December 14, 2010 at 11:33 am
Please keep in mind that the "fix" you used will only work if the database is set to Compatibility 80.
This means:
a) You won't be able to use the new 2005...
December 14, 2010 at 11:26 am
Restarting the SQL service, whether from just restarting the service or from rebooting the server/VM, dumps all traces except the default trace (usually trace ID 1).
I'd take a look in...
December 14, 2010 at 11:14 am
For that, you'd use a cursor. But there's no reason to. You can use Output Into to insert all the rows at once, then get all the IDs...
December 14, 2010 at 11:10 am
CirquedeSQLeil (12/14/2010)
GSquared (12/14/2010)
Alvin Ramard (12/14/2010)
GSquared (12/14/2010)
Alvin Ramard (12/14/2010)
I'd prefer a picture of the horse stepping on the iPad. 😀
How about a horse stepping on an iMat?
...
iMat? You'll need DBCC...
December 14, 2010 at 10:17 am
Any complex conditional formatting or nesting in the report?
December 14, 2010 at 10:14 am
Mark-101232 (12/14/2010)
WITH TESTDATA(Number) AS (
SELECT 12307.96 UNION ALL
SELECT 2207.96
),
XMLData(data) AS (
SELECT Number AS "@Val"
FROM TESTDATA
FOR XML PATH('X'),ROOT('R'),TYPE
)
SELECT r.value('@Val','float') AS...
December 14, 2010 at 10:12 am
LutzM (12/14/2010)
Another option not using any of the ROUND/FLOOR/CEILING functions:
PRINT (CAST(12307.96 AS INT)/1000 + 1)*1000Does it make sense to use it? I don't think so.
That won't "round" correctly if the...
December 14, 2010 at 10:11 am
Did you remember to turn the trace on? sp_trace_setstatus needs to be run to turn it on. Till you do that, it won't create any files.
December 14, 2010 at 10:09 am
Use XQuery to shred the XML, and use an OUTPUT clause to get the IDs from the insert.
You'll start with this:
DECLARE @XML XML;
SELECT @XML = '<Individual InternalID="154805" Action="Update">
<InsertUserID>ASDZXCCFG</InsertUserID>
<InsertDateTime>08-29-2008 17:13:57</InsertDateTime>
<UpdateUserID>SYSTEM_USER</UpdateUserID>
<UpdateDateTime>13-05-2010...
December 14, 2010 at 10:07 am
Alvin Ramard (12/14/2010)
GSquared (12/14/2010)
Alvin Ramard (12/14/2010)
I'd prefer a picture of the horse stepping on the iPad. 😀
How about a horse stepping on an iMat?
...
iMat? You'll need DBCC TimeWarp for...
December 14, 2010 at 9:58 am
Alvin Ramard (12/14/2010)
I'd prefer a picture of the horse stepping on the iPad. 😀
How about a horse stepping on an iMat?
December 14, 2010 at 9:54 am
Stefan Krzywicki (12/14/2010)
GilaMonster (12/14/2010)
Want some entertainment? I give you Gus's reply here http://www.sqlservercentral.com/Forums/FindPost1034345.aspx, nominated for comment on the week.
It almost...
December 14, 2010 at 9:50 am
GilaMonster (12/14/2010)
Want some entertainment? I give you Gus's reply here http://www.sqlservercentral.com/Forums/FindPost1034345.aspx, nominated for comment on the week.
It almost resulted in...
December 14, 2010 at 9:39 am
Caruncles (12/14/2010)
The only reason it matters is because I'm trying find out if...
December 14, 2010 at 7:24 am
Viewing 15 posts - 5,671 through 5,685 (of 14,953 total)