Viewing 15 posts - 8,836 through 8,850 (of 9,641 total)
Well, count this as one of the times I made a fool of myself. I actually looked up PatIndex in BOL expecting it to give an example using the...
April 8, 2008 at 1:34 pm
This should give you what you want:
Select
Table1.*,
Table2.*
From
Table1 T1 INNER JOIN
Table2 T2 On
T1.File_Name = T2.File_Name And
T1.Downloaded_Date = T2.Act_Date INNER JOIN
(Select
File_Name,
Max(DownLoaded_Date) as Max_Date
From
Table1
Group By
File_Name) as T3 On
T1.File_Name =...
April 8, 2008 at 1:20 pm
PATINDEX does not use Regular Expression Syntax so your second example is matching on 'A', '-', 'Z' and so the only matches found are 'A' and 'Z'
April 8, 2008 at 1:10 pm
Are you sure you need a cursor? If you do post the code you may find that the cursor is unnecessary.
April 8, 2008 at 1:06 pm
What are the settings for the web site in IIS? Has the server been rebooted and Reporting Services not restarted?
April 8, 2008 at 12:20 pm
K. Brian Kelley (4/7/2008)
Create a database role and grant it the rights to execute the stored procedures. Make the user a member of that role....
April 7, 2008 at 7:29 pm
I believe that it is in machine.config, but I actually am not sure and I do not have access to a web server at this moment.
April 7, 2008 at 7:28 pm
I don't think the autogrow setting will affect you until it needs to grow. Most experts do not think you should set it autogrow. You definitely should not...
April 7, 2008 at 4:55 pm
You can just used a varchar or nvarchar field to store the path. Then your GUI will use that as its path into the file system.
April 7, 2008 at 4:52 pm
Can you post your connection string (minus any private data)?
April 7, 2008 at 4:38 pm
You need to go to the Sql Server Configuration Manager-> Sql Server Netowork Configuration -> Protocols and set the SQL Server to allow remote connections via at least TCP/IP. ...
April 7, 2008 at 2:51 pm
The other consideration for this is any calculations/aggregates you may use against this column. 0 is much different than Null. Check out this article before making this change,...
April 7, 2008 at 2:47 pm
All you need is to grant execute procedures on the stored procedure as long as the stored procedure and tables are all owned by the same owner. For example...
April 7, 2008 at 2:42 pm
Try QuoteName. From BOL:
Returns a Unicode string with the delimiters added to make the input string a valid Microsoft SQL Server 2005 delimited identifier.
Transact-SQL Syntax Conventions
Syntax
QUOTENAME (...
April 7, 2008 at 2:38 pm
Accroding to Wikipedia:
A software development acronym for Quick Fix Engineering. This is the Microsoft and Intel term for a hotfix
ASP - Active Server Pages
Yes it means that there is not...
April 7, 2008 at 11:20 am
Viewing 15 posts - 8,836 through 8,850 (of 9,641 total)