Forum: MS SQL Jun 12th, 2009 |
| Replies: 2 Views: 758 Can you please try that on SSMS, and see what happens? it may there something wrong from C#. |
Forum: MS SQL Jun 1st, 2009 |
| Replies: 3 Views: 544 It's independent ETL solution by Microsoft but from any source to any destination and you don't need to have SQL Server as software or staging to move data, I highly recommend you to use it, any help... |
Forum: MS SQL Jun 1st, 2009 |
| Replies: 3 Views: 544 what about SSIS? I didn't use SSMA.
You can use SSIS to move\copy data in fast and smooth way. |
Forum: MS SQL May 4th, 2009 |
| Replies: 5 Views: 1,108 |
Forum: MS SQL Apr 30th, 2009 |
| Replies: 5 Views: 1,108 Open new query document and copy the script and paste it there. |
Forum: MS SQL Apr 24th, 2009 |
| Replies: 3 Views: 684 Check this http://social.msdn.microsoft.com/forums/en-US/sqldatabaseengine/thread/867b3a86-18ad-45f8-b051-4e7312233587/ or search on that... |
Forum: MS SQL Apr 23rd, 2009 |
| Replies: 3 Views: 684 Do you have any triggers on those tables? |
Forum: MS SQL Apr 14th, 2009 |
| Replies: 3 Views: 410 Here you're
SELECT WorkOrders.ID, employees.name, employees_1.name AS Expr1
FROM WorkOrders LEFT OUTER JOIN
employees AS employees_1 ON WorkOrders.submitted_by... |
Forum: MS SQL Apr 14th, 2009 |
| Replies: 12 Views: 2,389 Remove alias and use the table name directly. Replace every T1 & T2 with tblEmailClub |
Forum: MS SQL Apr 13th, 2009 |
| Replies: 12 Views: 2,389 After digging I came with bad performance solution :s but I think it works,
SELECT
T1.address1,
tblEmailClub.emailclub_id,
tblEmailClub.firstname,
tblEmailClub.lastname,
tblEmailClub.email,... |
Forum: MS SQL Apr 13th, 2009 |
| Replies: 12 Views: 2,389 You've right, I'll try something else and reply you. |
Forum: MS SQL Apr 13th, 2009 |
| Replies: 12 Views: 2,389 No, distinct works on column and it removes the duplication, I tried it myself. |
Forum: MS SQL Apr 13th, 2009 |
| Replies: 12 Views: 2,389 hmmm, That's because of obligation of being distinct in first place
SELECT
DISTINCT (tblEmailClub.address1),
tblEmailClub.emailclub_id,
tblEmailClub.firstname,
tblEmailClub.lastname,... |
Forum: MS SQL Apr 9th, 2009 |
| Replies: 12 Views: 2,389 You say it doesn't work in this way
SELECT tblEmailClub.emailclub_id,
tblEmailClub.firstname,
tblEmailClub.lastname,
tblEmailClub.email,
tblSourceHistory.datereg,
tblEmailClub.active,... |
Forum: MS SQL Apr 9th, 2009 |
| Replies: 12 Views: 2,389 |
Forum: MS SQL Mar 31st, 2009 |
| Replies: 3 Views: 852 *Not to mention I used Pubs database and worked on Authors table (address column) |
Forum: MS SQL Mar 31st, 2009 |
| Replies: 3 Views: 852 Dear Andresasongko,
select
REVERSE
(
substring(
REVERSE(address)
, 0
, CHARINDEX(' ' |
Forum: MS SQL Feb 24th, 2009 |
| Replies: 16 Views: 1,270 |
Forum: MS SQL Feb 24th, 2009 |
| Replies: 16 Views: 1,270 Yes, SQL Server 2005 has better performance over SQL Server 2000, and I think migration to 2005 is essentially.
No problem from your side else remove * and replace it with columns names. Yes it... |
Forum: MS SQL Feb 10th, 2009 |
| Replies: 13 Views: 1,595 Are you sure you using correct database? |
Forum: MS SQL Feb 10th, 2009 |
| Replies: 13 Views: 1,595 You don't have column "UserName" |
Forum: MS SQL Feb 9th, 2009 |
| Replies: 13 Views: 1,595 You're welcome, I'm happy you solved your problem, please mark it as solved. |
Forum: MS SQL Feb 8th, 2009 |
| Replies: 5 Views: 1,115 oooh. I thought you did, take your time, best of luck! |
Forum: MS SQL Feb 8th, 2009 |
| Replies: 5 Views: 1,115 Very great :) please mark this thread as solved. |
Forum: MS SQL Feb 8th, 2009 |
| Replies: 5 Views: 1,115 How could you by pass MSDN!! http://msdn.microsoft.com/en-us/library/ms190479.aspx |
Forum: MS SQL Feb 7th, 2009 |
| Replies: 13 Views: 1,595 First of all your database design isn't correct, or you've another opinion? discuss that with me..
I don't need to waste time in writing SQL Statement on invalid database design, your query isn't... |
Forum: MS SQL Feb 7th, 2009 |
| Replies: 13 Views: 1,595 haaaa, give me your tryings friend :) |
Forum: MS SQL Feb 6th, 2009 |
| Replies: 4 Views: 845 Mark it as solved please! |
Forum: MS SQL Feb 6th, 2009 |
| Replies: 6 Views: 3,006 I can't do that, never ever!!! I was seriously suggesting, some time I don't find RENAME but F2 works! I'll see it myself and be back! |
Forum: MS SQL Feb 6th, 2009 |
| Replies: 6 Views: 3,006 |
Forum: MS SQL Feb 6th, 2009 |
| Replies: 4 Views: 845 My friend it's not related to MS SQL Server :) it's about how can you play with the datetime value returned from SQL Server, as SQL Server returns the value, the problem is over here, and you can... |
Forum: MS SQL Jan 28th, 2009 |
| Replies: 27 Views: 1,862 I am happy more than you because your problem solved :)
Please mark it as solved, and feel free to come here again to ask, and share your knowledge :) |
Forum: MS SQL Jan 28th, 2009 |
| Replies: 27 Views: 1,862 Update SP2 on the server machine |
Forum: MS SQL Jan 28th, 2009 |
| Replies: 27 Views: 1,862 So you need to install SP for x86, iff the server which SQL Server not client tools resides in is x86.
See SP2 help file for the instructions. |
Forum: MS SQL Jan 28th, 2009 |
| Replies: 27 Views: 1,862 The SQL Server. Contact the administrator. |
Forum: MS SQL Jan 28th, 2009 |
| Replies: 27 Views: 1,862 Try, be sure the SP2 is also x64 |
Forum: MS SQL Jan 28th, 2009 |
| Replies: 27 Views: 1,862 |
Forum: MS SQL Jan 27th, 2009 |
| Replies: 27 Views: 1,862 |
Forum: MS SQL Jan 27th, 2009 |
| Replies: 27 Views: 1,862 Sure you must upgrade the server not the client :) read the URL content again they solved the problem. |
Forum: MS SQL Jan 27th, 2009 |
| Replies: 27 Views: 1,862 Analysis and Reporting doesn't mean anything, but it's important to know the cause, did you look to the URL? |