Viewing 15 posts - 76 through 90 (of 167 total)
We have a space issue in drive. No space for backups.
I could see the network drive in MyComputer. How can I know whether it is UNC network drive.
I tried...
September 23, 2010 at 9:04 am
CirquedeSQLeil (9/17/2010)
Yes, I would add a transformation task and include all of the columns in this case.
Thanks for your reply. Can you please explain in details, what transformation need to...
September 17, 2010 at 1:42 pm
I created below script and added to source in SSIS package, destination I have taken csv file.
when I execute the package I am getting below error.
Column 'OfficePhone' cannot convert between...
September 17, 2010 at 1:20 pm
I am getting empty space if I use below query
USE MYDB;
GO
select UserName, ISNULL(NULL, '') AS 'UserID'
FROM Tablename;
GO
I am getting 0 if I use below query
USE MYDB;
GO
select UserName, ISNULL(Userid, '')...
September 17, 2010 at 11:52 am
Hi Jeff, Thanks for your reply.
I am getting empty space by using below query. Please correct me if I am wrong.
USE MYDB;
GO
select UserName, ISNULL(NULL, '') AS 'UserID'
FROM Tablename;
GO
Jeff...
September 16, 2010 at 10:17 pm
I used below query
USE dbname;
GO
select column1, column2, ISNULL(Column3, ' ') AS 'xxxx'
FROM Table1;
GO
column3 (FK, int, null)
September 16, 2010 at 9:47 pm
Actually I need to export the data to excel file. Some the coulumns data have NULL values.
I have used ISNULL function and wrote a below T-SQL statement, but ...
September 16, 2010 at 7:58 pm
Thanks for your replies.
I have successfully removed BUILTIN/Administrator after adding the group to SQL Login that used to administer the SQL Server.
Our server is SQL Server 2005 cluster server active/passive
What...
September 7, 2010 at 1:47 pm
we want to remove the BUILTIN/Administrator after adding the Window group to SQL Logins to administer the SQL Server
D0 We need server failover/failback the cluster to ensure everything is working...
September 3, 2010 at 5:28 pm
If I understood correct...
if we disable agent xps , only thing is SQL Agent node/group is not available in SSMS.
bUT agent service will run as normal, no issue with jobs.
Please...
September 1, 2010 at 6:24 pm
Thank you very much.
2 more questions on sql security
1. Can we create a SQL login with out creating a windows user?
2. Can we create a DB user with out...
August 20, 2010 at 9:34 am
Adiga (8/10/2010)
You may revoke it. Please make sure that there no applications making use of this procedure through public role.
Thanks for your reply.
All applications (websites, windows services) use windows authentication...
August 12, 2010 at 7:24 am
Ed Zann (6/24/2010)
July 24, 2010 at 12:06 pm
Viewing 15 posts - 76 through 90 (of 167 total)