|
|
-
splitfinity Learned 2 Years ago through Just Learned | 1 Point
I want to share the script to upload files via FTP in SQL Server which need work directory to create a FTP command file to execute. This script will use ASCII transfer mode as a default to upload files.
[CODE]
DECLARE
@FTPServer varchar(128) ,
@F...
|
-
splitfinity Learned 2 Years ago through Just Learned | 1 Point
I want to share the script to upload files via FTP in SQL Server which need work directory to create a FTP command file to execute. This script will use ASCII transfer mode as a default to upload files.
[CODE]
DECLARE
@FTPServer varchar(128) ,
@F...
|
-
splitfinity Learned 2 Years ago through Just Learned | 1 Point
I want to share the script to upload files via FTP in SQL Server which need work directory to create a FTP command file to execute. This script will use ASCII transfer mode as a default to upload files.
[CODE]
DECLARE
@FTPServer varchar(128) ,
@FTPU
|
-
splitfinity knew 2 Years ago through Just Learned | 1 Point
I have just tried to connect SQL Server default local instance by providing "." as server name and able to connect. We can connect with "(local)" also.......
|
-
splitfinity knew 2 Years ago through Just Learned | 1 Point
I have just tried to connect SQL Server default local instance by providing "." as server name and able to connect. We can connect with "(local)" also.......
|
-
splitfinity knew 2 Years ago through Just Learned | 1 Point
Just learned from pinal's blog that by using SSMS, we can generate various reports also. Suppose, we can generate the report of top queries by average CPU Time or average IO Time etc.
In SSMS, Right click on server name-> Reports -> Standard Re...
|
-
splitfinity knew 2 Years ago through Just Learned | 1 Point
Just learned from pinal's blog that by using SSMS, we can generate various reports also. Suppose, we can generate the report of top queries by average CPU Time or average IO Time etc.
In SSMS, Right click on server name-> Reports -> Standard Re...
|
-
splitfinity Liked 2 Years ago through Just Learned | 1 Point
What if you want to find out if a specific field contains a certain value?
For example you want to find out all employees who have 0 vacation hours and 0 sickhours.
Common way is to write a where clause with 'or'.
Another way to do this is to use 'i...
|
-
splitfinity Learned 2 Years ago through Just Learned | 1 Point
What if you want to find out if a specific field contains a certain value?
For example you want to find out all employees who have 0 vacation hours and 0 sickhours.
Common way is to write a where clause with 'or'.
Another way to do this is to use 'i...
|
-
splitfinity Learned 2 Years ago through Just Learned | 1 Point
What if you want to find out if a specific field contains a certain value?
For example you want to find out all employees who have 0 vacation hours and 0 sickhours.
Common way is to write a where clause with 'or'.
Another way to do this is to use 'i...
|