Viewing 15 posts - 5,761 through 5,775 (of 7,168 total)
Here is your query rewritten using ANSI-92 JOINS:
SELECT t1.id,
t1.col1,
t1.col2,
...
June 29, 2011 at 10:50 am
muthukkumaran Kaliyamoorthy (6/29/2011)
...I hope you'll try.
I strongly second that forsqlserver!
June 29, 2011 at 10:34 am
Cool, happy you got it sorted 🙂
June 29, 2011 at 10:31 am
Nice, 530,000 files. Robocopy could handle the volume but it most likely does a simple stat on the source and destination files to decide if it needs to replace the...
June 29, 2011 at 10:15 am
Rounding is an intrinsic property of the DATETIME data type and FLOAT is an approximate data type so no guarantees. See "Accuracy" in this article: http://technet.microsoft.com/en-us/library/ms187819.aspx
June 29, 2011 at 9:52 am
Which FILEGROUP is the PRIMARY?
June 29, 2011 at 9:46 am
aarded (6/29/2011)
...- I have setup a proxy account for SQLserver Agent, and this works fine.
...
Not a SQL Agent proxy, the xp_CmdShell proxy.
-- remove proxy
EXEC sys.sp_xp_cmdshell_proxy_account NULL
GO
-- create proxy (shows up...
June 29, 2011 at 9:03 am
rayh 98086 (6/29/2011)
Thank you, the export is working.
Two more questions about the formatting.
1. Is there a way to have the column names appear as the first row?...
June 29, 2011 at 8:58 am
SQLkiwi (6/29/2011)
opc.three (6/28/2011)
dbo.GROUP_CONCAT(i.OffID) AS offidlistWouldn't that require the sorted variant to be strictly the same as the FOR XML example?
If sorting were a requirement then the dbo.GROUP_CONCAT_S UDA would be...
June 29, 2011 at 8:00 am
I love it when that happens 🙂
No need (or way) to mark anything resolved, it's really just banter anyway, right? Happy you got it sorted!
June 29, 2011 at 1:26 am
Gianluca Sartori (6/29/2011)
opc.three (6/29/2011)
I'll assume that means that's the actual query...what do we see from this?
INSERT INTO OPENQUERY(linkedserver, 'select a,b,c from remote_table')
VALUES ( 10, 20, '30')
I don't expect it to...
June 29, 2011 at 1:15 am
Which data type are you using in Sybase? Which version of Sybase?
See if you're happier with one of the approximate data types in MS SQL Server:
select isnull(convert(float,(convert(float,333) / convert(float,nullif(11,0)))),1)
June 29, 2011 at 1:10 am
Peter1971 (6/29/2011)
declare @tekst as nvarchar(1600)
set @tekst = 'test'
INSERT into
openquery(rl_smd01, 'select in_kr_nr, in_record_code, in_kr_key, in_tekst_tabel from info
...
June 29, 2011 at 1:03 am
I'll assume that means that's the actual query...what do we see from this?
INSERT INTO OPENQUERY(linkedserver, 'select a,b,c from remote_table')
VALUES ( 10, 20, '30')
June 29, 2011 at 12:56 am
forsqlserver (6/28/2011)
Can I set the page size of sql server.
No.
Actually we have a database in which only image files get stored.and those images are bigger than the default page size.
What...
June 29, 2011 at 12:47 am
Viewing 15 posts - 5,761 through 5,775 (of 7,168 total)