Viewing 15 posts - 61 through 75 (of 118 total)
Thanks for the reply
i dont see anything mentioned in the link that we can change port 1433 as port number for default instance,
i am sure we can change it for...
November 6, 2012 at 3:26 pm
Thanks for the script demonfox!
It works for me.
is there anyway, we can load data without declaring coulmn names and data types(data type is not the issue for me)
My csv file...
October 16, 2012 at 10:41 am
Thanks for the reply ron,
I am expecting a script, not thru GUI
Thanks again 🙂
October 15, 2012 at 6:43 pm
Hope this link helps you
http://sqlism.blogspot.com/2012/08/finding-port-number-for-particular-sql.html
Finding the Port Number for a particular SQL Server Instance
DECLARE @tcp_port nvarchar(5)
EXEC xp_regread
@rootkey = ‘HKEY_LOCAL_MACHINE’,
@key = ‘SOFTWARE\MICROSOFT\MSSQLSERVER\MSSQLSERVER\SUPERSOCKETNETLIB\TCP’,
@value_name = ‘TcpPort’,
@value = @tcp_port OUTPUT
select @tcp_port
September 12, 2012 at 6:27 pm
Hope this link helps you
http://www.sqlserverbox.com/ssis-package-in-sql-server-agent-job-fails.html
http://sqlism.blogspot.com/2012/08/ssis-package-in-sql-server-agent-job.html
SSIS Package in SQL Server Agent Job Fails
Error:
Argument "xyz" for option "connection" is not valid. The command line parameters are invalid. The step...
September 12, 2012 at 6:25 pm
EXEC xp_cmdshell 'net use v: \\ServerName\foldername'
Here we are assigning V as drive letter to the \\ServerName\foldername'
-----------------------------------
BACKUP DATABASE [XYZ] TO
DISK = N'v\xyz.bak'
WITH stats = 10, format
September 6, 2012 at 9:50 am
test image
September 5, 2012 at 4:55 pm
If you dont mind can someone explain this with screen shots?
guess this will be helpful to new bies
Thanks again
September 5, 2012 at 4:45 pm
i failed to upload.
i cant see preview or image in the post
I tried 'reply'
than 'browse'
select image
'uploaded'
it dindt appeared in the post
September 5, 2012 at 4:28 pm
Thank you! 🙂
September 5, 2012 at 4:18 pm
To Everyone who replied on this topic. Thank you so much.
The total scenario is well explained here.
Thanks again!
August 31, 2012 at 2:35 pm
what is the port number that i have to request to open ?
Thanks a ton!
August 29, 2012 at 3:40 pm
how come he is able to connect to default instance ? but not the named instance ?
😮
Note: I am not sure that we are in differnet subnets. i will post...
August 29, 2012 at 3:03 pm
Thanks everyone this topic really really helped me a lot.
I installed management studio on my desktop and my other dba's desktop, we successfully connected to named instance,
so by this, i...
August 29, 2012 at 2:48 pm
Viewing 15 posts - 61 through 75 (of 118 total)