Viewing 15 posts - 2,176 through 2,190 (of 7,168 total)
Thanks for posting back! This thread bugged me because the symptoms simply did not compute based on the information on hand. Nice detective work. It's nice to know there were...
January 31, 2013 at 3:18 pm
opc.three (1/30/2013)
Which version of SQL are you on?
This one was actually directed to you Richard, just wondering if you were on the latest build. Jonathan seemed to imply there might...
January 31, 2013 at 9:20 am
Ed Wagner (1/31/2013)
January 31, 2013 at 8:47 am
Forget Windows Batch, PowerShell was built for tasks like this.
Here is a one line command that does what you need. Add as many paths as you want and change the...
January 31, 2013 at 7:18 am
That looks like MySQL code. This is a website dedicated to Microsoft SQL Server. You may find more assistance on StackOverflow or the Oracle product website.
January 31, 2013 at 6:42 am
Agreed Best Practice is to try and keep everyone away from the instance during an upgrade but I think 'script upgrade mode' protects the instance now. All concerns surrounding taking...
January 31, 2013 at 6:41 am
How about a Web Service Task?
January 31, 2013 at 6:34 am
Bill Talada (1/31/2013)
January 31, 2013 at 6:32 am
I am still not seeing a need to use xp_cmdshell or sqlcmd.
The stored procedure can execute the code dynamically using EXEC().
January 31, 2013 at 6:24 am
Not sure if XML Source has some limits, but you could try setting the output column to DT_NTEXT.
January 31, 2013 at 6:19 am
"Forwarding pointers" only if we're talking about a heaps, else a page split. Neither is good though. If you have a column that will initially be empty, even something wider...
January 31, 2013 at 6:12 am
yuvipoy (1/29/2013)
I am having a requirement like this
say if two table name is the input
i will take 2 tables and need to create a view
there may be common...
January 31, 2013 at 5:59 am
SELECT 1 AS a INTO #tmp;
GO
DROP TABLE tempdb..#tmp;
SELECT 1 AS a INTO #tmp
GO
DROP TABLE tempdb.dbo.#tmp
SELECT 1 AS a INTO #tmp
GO
SELECT * FROM tempdb..#tmp
-- look in messages tab
Modify your code so...
January 31, 2013 at 5:56 am
maida_rh (1/30/2013)
ALTER PROCEDURE [dbo].[USP_Insert_UserSurveyUsingXML]
-- Add the parameters for the stored procedure here
--@XmlHandle int,
...
January 31, 2013 at 5:51 am
Admingod (1/30/2013)
error: "Cannot get the data...
January 31, 2013 at 5:33 am
Viewing 15 posts - 2,176 through 2,190 (of 7,168 total)