Viewing 15 posts - 1,636 through 1,650 (of 2,612 total)
Your data does not make sense. The second table does not indicate a client.
And then a tip on posting...
What would help is if you post with some sample data...
May 9, 2008 at 6:07 am
If the file is alone in the directory, you could use a ForEach loop and loop through the files (of which there will be one).
I am not sure why you...
May 9, 2008 at 5:55 am
Reorganizing your clustered index (and other indexes) will "shrink" the table to it's optimal size, but it will not give anything back to the operating system. It just leaves...
May 8, 2008 at 1:20 pm
Your domain is being renamed, or your server is moving to another domain?
If your domain is being renamed (not that I would recommend renaming a domain), the SID's should still...
May 8, 2008 at 1:09 pm
That will only work if you cannot insert more than one row at a time. Triggers in SQL are set-based - your INSERTED table may have one row with...
May 8, 2008 at 1:03 pm
Transactional replication updates one record at a time on all subscribers by default.
You have some ability to manage this, but it can be tricky to manage replication once you have...
May 8, 2008 at 1:00 pm
Didn't you post the same question yesterday?
May 8, 2008 at 12:54 pm
You said it works from your dev box - which I will assume is the server your service is on.
My first guess would be an Excel issue. Log into...
May 8, 2008 at 12:46 pm
I would expect this to work:
(DT_CY)(TRIM(REPLACE(Copay, "$", "")))
May 8, 2008 at 12:40 pm
I think this is what you are trying to do:
[font="Courier New"]SELECT
*
FROM
Inserted I
LEFT JOIN dbo.User U ON I.CreatorID = U.ID AND U.Inactive = 0
WHERE
I.CreatorID IS NOT NULL
AND U.ID IS NULL[/font]
I would...
May 8, 2008 at 12:37 pm
I am not a big fan of linked servers or cross-server stored procedures because they tend to promote bad practices and end up with poor performance. They can be...
May 8, 2008 at 12:21 pm
The client tools are the same.
May 8, 2008 at 11:50 am
You are saying that you have users without an NT Login and you want them to have access to your report server.
Then you indicate you want to pass some kind...
May 8, 2008 at 8:23 am
Viewing 15 posts - 1,636 through 1,650 (of 2,612 total)