Viewing 15 posts - 2,176 through 2,190 (of 7,164 total)
Ed Wagner (1/31/2013)
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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.
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 31, 2013 at 6:41 am
How about a Web Service Task?
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 31, 2013 at 6:34 am
Bill Talada (1/31/2013)
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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().
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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.
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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,
...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 31, 2013 at 5:51 am
Admingod (1/30/2013)
error: "Cannot get the data...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 31, 2013 at 5:33 am
Easwaran-336667 (1/31/2013)
Please note that I've downloaded the Red Gate's data compare tool which shows the difference but did not provide the script to sync it.
redgate SQL Data Compare will most...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 31, 2013 at 5:29 am
I have not found telnet to be all that reliable since some firewalls will block it. PortQry is what I use for things like this. It will allow you to...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 31, 2013 at 5:27 am
Viewing 15 posts - 2,176 through 2,190 (of 7,164 total)