Viewing 15 posts - 3,931 through 3,945 (of 7,168 total)
SQL Kiwi (5/29/2012)
opc.three (5/29/2012)
Using ALTER TABLE ... REBUILD can actually make things worse in terms of fragmentation depending on the heap's DDL.What do you mean?
I mean that fragmentation reported in...
May 29, 2012 at 10:55 pm
Using ALTER TABLE ... REBUILD can actually make things worse in terms of fragmentation depending on the heap's DDL. If you're exploring the fragmentation of a heap as a means...
May 29, 2012 at 1:19 pm
Fix table and column names as needed:
SELECT uz.*
FROM User_Zips uz
LEFT JOIN Zip z ON uz.zip_code = z.zip_code
WHERE ...
May 29, 2012 at 12:00 pm
ashley.wardell (5/28/2012)
I have a list of file i want to Bulk insert using the Bulk Insert command.
I also have an XML format file for the data.
I want to...
May 29, 2012 at 11:53 am
lmeinke (5/25/2012)
The Insert into "openrowset" command apparently needs an existing spreadsheet?
Correct.
Is the format of the spreadsheet the same for each district manager? If so, the simplest way to handle the...
May 29, 2012 at 11:42 am
You could try using an OLE DB Source instead of a DataReader source. Or you could try a different Oracle driver.
I have to ask though, why can't you change the...
May 29, 2012 at 11:31 am
That means the mail server accepted it from Database Mail. You'll need to check with the email server admin to see why the email delivery process ended inside the mail...
May 29, 2012 at 11:12 am
That is a derivation based on the query you're sending. The Oracle driver is reading that a Unicode string of length 4000 will be returned from the query. You'll need...
May 29, 2012 at 11:01 am
krypto69 (5/29/2012)
My SYS admins are updating our servers from windows 2000 to windows 2008We are using mixed mode authentication -
Will I have any login issues?
You should be fine.
EDIT: forgot to...
May 29, 2012 at 10:38 am
Deepak.Sharma507 (5/28/2012)
...if I create a trigger, is there any way I can find out which application did the changes. ??
In your delete trigger this will retrieve the name of the...
May 29, 2012 at 10:27 am
Use this as an opportunity to learn a new technique, you won't be sorry 😉
May 29, 2012 at 10:24 am
Your XSD file should probably be crafted by hand. Some tools (SSMS included) can reverse-engineer an XSD based on an XML file however it is only a "best guess", i.e....
May 29, 2012 at 10:22 am
Try using the SQLCLR to implement web requests. There is no practical limit within .NET (2GB string) for response sizes.
May 29, 2012 at 10:03 am
Please do not cross-post. It just fragments replies and wastes people's time. Direct all replies here:
http://www.sqlservercentral.com/Forums/Topic1307785-364-1.aspx
May 29, 2012 at 10:00 am
I would use a For Loop Container (FLC) to poll for data in Oracle using an Execute SQL Task and then sleep for n-seconds in between tries.
May 29, 2012 at 9:59 am
Viewing 15 posts - 3,931 through 3,945 (of 7,168 total)